func crypto/hmac.New
11 uses
crypto/hmac (current package)
hmac.go#L129: func New(h func() hash.Hash, key []byte) hash.Hash {
crypto/tls
cipher_suites.go#L433: return hmac.New(h, key)
cipher_suites.go#L439: return hmac.New(sha256.New, key)
key_schedule.go#L105: verifyData := hmac.New(c.hash.New, finishedKey)
prf.go#L28: h := hmac.New(hash, secret)
ticket.go#L341: mac := hmac.New(sha256.New, key.hmacKey[:])
ticket.go#L376: mac := hmac.New(sha256.New, key.hmacKey[:])
github.com/golang-jwt/jwt/v5
hmac.go#L73: hasher := hmac.New(m.Hash.New, keyBytes)
hmac.go#L97: hasher := hmac.New(m.Hash.New, keyBytes)
vendor/golang.org/x/crypto/hkdf
hkdf.go#L30: extractor := hmac.New(hash, salt)
hkdf.go#L86: expander := hmac.New(hash, pseudorandomKey)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |