func crypto/internal/fips140/hmac.New
12 uses
crypto/internal/fips140/hmac (current package)
cast.go#L26: h := New(sha256.New, input)
hmac.go#L168: func New[H hash.Hash](h func() H, key []byte) *HMAC {
crypto/internal/fips140/check
check.go#L67: h := hmac.New(sha256.New, make([]byte, 32))
crypto/internal/fips140/ecdsa
hmacdrbg.go#L58: return hmac.New(hash, key)
hmacdrbg.go#L71: h := hmac.New(hash, K)
hmacdrbg.go#L89: h = hmac.New(hash, K)
hmacdrbg.go#L111: h = hmac.New(hash, K)
crypto/internal/fips140/hkdf
hkdf.go#L20: extractor := hmac.New(h, salt)
hkdf.go#L29: expander := hmac.New(h, pseudorandomKey)
crypto/internal/fips140/pbkdf2
pbkdf2.go#L30: prf := hmac.New(h, []byte(password))
crypto/internal/fips140/tls12
tls12.go#L29: h := hmac.New(hash, secret)
crypto/hmac
hmac.go#L56: return hmac.New(h, key)
 |
The pages are generated with Golds v0.8.4. (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. |