diff --git a/hkdf.go b/hkdf.go index 2ce82db..d4f8aa6 100644 --- a/hkdf.go +++ b/hkdf.go @@ -151,7 +151,7 @@ func ExtractHKDF(h func() hash.Hash, secret, salt []byte) ([]byte, error) { } } -// ExpandHKDFOneShot derives a key from the given hash, key, and optional context info, +// ExpandHKDFOneShot derives a key from the given hash, key, and optional context info. func ExpandHKDFOneShot(h func() hash.Hash, pseudorandomKey, info []byte, keyLength int) ([]byte, error) { if !SupportsHKDF() { return nil, errUnsupportedVersion()