crypto: Fix comment typo

This commit is contained in:
George Ornbo 2017-12-14 21:55:18 +00:00
parent e9971d356b
commit 7bb2a489b2
No known key found for this signature in database
GPG Key ID: 8B63285980040E5D
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ func ToECDSA(d []byte) (*ecdsa.PrivateKey, error) {
return toECDSA(d, true)
}
// ToECDSAUnsafe blidly converts a binary blob to a private key. It should almost
// ToECDSAUnsafe blindly converts a binary blob to a private key. It should almost
// never be used unless you are sure the input is valid and want to avoid hitting
// errors due to bad origin encoding (0 prefixes cut off).
func ToECDSAUnsafe(d []byte) *ecdsa.PrivateKey {