func crypto/sha256.New

21 uses

	crypto/sha256 (current package)
		sha256.go#L18: 	crypto.RegisterHash(crypto.SHA256, New)
		sha256.go#L34: func New() hash.Hash {
		sha256.go#L57: 	h := New()

	crypto/hpke
		kdf.go#L65: var hkdfSHA256 = &hkdfKDF{hash: sha256.New, id: 0x0001, nH: sha256.Size}

	crypto/tls
		cipher_suites.go#L443: 	return hmac.New(sha256.New, key)
		prf.go#L98: 		return prf12(sha256.New), crypto.SHA256
		ticket.go#L346: 	mac := hmac.New(sha256.New, key.hmacKey[:])
		ticket.go#L381: 		mac := hmac.New(sha256.New, key.hmacKey[:])

	github.com/gotd/td/crypto
		keys.go#L40: 	h := sha256.New()
		keys.go#L59: 	h := sha256.New()
		keys.go#L71: 	h := sha256.New()
		rsa_pad.go#L69: 			h := sha256.New()
		rsa_pad.go#L151: 		h := sha256.New()
		sha256.go#L21: 		return sha256.New()

	github.com/gotd/td/crypto/srp
		hash.go#L88: 	h := sha256.New()

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

	github.com/refraction-networking/utls
		cipher_suites.go#L438: 	return hmac.New(sha256.New, key)
		prf.go#L99: 		return prf12(sha256.New), crypto.SHA256
		ticket.go#L341: 	mac := hmac.New(sha256.New, key.hmacKey[:])
		ticket.go#L376: 		mac := hmac.New(sha256.New, key.hmacKey[:])