func crypto/sha256.New
19 uses
crypto/sha256 (current package)
sha256.go#L18: crypto.RegisterHash(crypto.SHA256, New)
sha256.go#L161: func New() hash.Hash {
crypto/tls
cipher_suites.go#L258: return hmac.New(sha256.New, key)
prf.go#L95: return prf12(sha256.New), crypto.SHA256
ticket.go#L140: mac := hmac.New(sha256.New, key.hmacKey[:])
ticket.go#L169: mac := hmac.New(sha256.New, key.hmacKey[:])
github.com/aws/aws-sdk-go/aws/signer/v4
v4.go#L745: hash := hmac.New(sha256.New, key)
v4.go#L751: hash := sha256.New()
v4.go#L757: hash := sha256.New()
github.com/jackc/pgconn
auth_scram.go#L217: sc.saltedPassword = pbkdf2.Key([]byte(sc.password), sc.salt, sc.iterations, 32, sha256.New)
auth_scram.go#L240: mac := hmac.New(sha256.New, key)
github.com/lib/pq
conn.go#L1141: sc := scram.NewClient(sha256.New, o["user"], o["password"])
golang.org/x/crypto/ssh
keys.go#L877: h := sha256.New()
mac.go#L50: return hmac.New(sha256.New, key)
mac.go#L53: return hmac.New(sha256.New, key)
golang.org/x/oauth2/jws
jws.go#L158: h := sha256.New()
jws.go#L179: h := sha256.New()
golang.org/x/pkgsite/internal/middleware
quota.go#L114: mac := hmac.New(sha256.New, hmacKey)
google.golang.org/grpc/credentials/alts/internal/conn
aeadrekey.go#L127: mac := hmac.New(sha256.New, key)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |