func crypto/internal/fips140/hkdf.Expand

4 uses

	crypto/internal/fips140/hkdf (current package)
		hkdf.go#L27: func Expand[H hash.Hash](h func() H, pseudorandomKey []byte, info string, keyLen int) []byte {
		hkdf.go#L56: 	return Expand(h, prk, info, keyLen)

	crypto/internal/fips140/tls13
		tls13.go#L39: 	return hkdf.Expand(hash, secret, string(hkdfLabel), length)

	crypto/hkdf
		hkdf.go#L53: 	return hkdf.Expand(fh, pseudorandomKey, info, keyLength), nil