Lines Matching full:hash
19 "hash"23 func hkdfExtract(hash func() hash.Hash, salt, ikm []byte) []byte {25 salt = make([]byte, hash().Size())27 hmac := hmac.New(hash, salt)33 func hkdfExpand(hash func() hash.Hash, prk, info []byte, length int) []byte {34 hashSize := hash().Size()44 hmac := hmac.New(hash, prk)