func crypto/hmac.New

12 uses

	crypto/hmac (current package)
		hmac.go#L129: func New(h func() hash.Hash, key []byte) hash.Hash {

	crypto/tls
		cipher_suites.go#L423: 	return hmac.New(h, key)
		cipher_suites.go#L429: 	return hmac.New(sha256.New, key)
		key_schedule.go#L103: 	verifyData := hmac.New(c.hash.New, finishedKey)
		prf.go#L28: 	h := hmac.New(hash, secret)
		ticket.go#L340: 	mac := hmac.New(sha256.New, key.hmacKey[:])
		ticket.go#L375: 		mac := hmac.New(sha256.New, key.hmacKey[:])

	github.com/gotd/td/internal/mtproxy/faketls
		client_hello.go#L108: 	mac := hmac.New(sha256.New, secret)
		server_hello.go#L53: 	mac := hmac.New(sha256.New, secret)

	golang.org/x/crypto/pbkdf2
		pbkdf2.go#L43: 	prf := hmac.New(h, password)

	vendor/golang.org/x/crypto/hkdf
		hkdf.go#L30: 	extractor := hmac.New(hash, salt)
		hkdf.go#L84: 	expander := hmac.New(hash, pseudorandomKey)