diff --git a/rfc3161.go b/rfc3161.go index ac933e9..96ee83f 100644 --- a/rfc3161.go +++ b/rfc3161.go @@ -5,8 +5,6 @@ import ( "encoding/asn1" "errors" "mime" - - "github.com/cryptoballot/entropychecker" ) // Misc Errors @@ -89,15 +87,7 @@ func setMimeTypes() error { } func init() { - // Make sure we have sufficient entropy and fail to start if there isn't - // This only works on Linux. - err := entropychecker.WaitForEntropy() - if err != nil && err != entropychecker.ErrUnsupportedOS { - panic(err) - } - - err = setMimeTypes() - if err != nil { + if err := setMimeTypes(); err != nil { panic(err) } }