func crypto/sha1.New

14 uses

	crypto/sha1 (current package)
		sha1.go#L19: 	crypto.RegisterHash(crypto.SHA1, New)
		sha1.go#L109: func New() hash.Hash {

	crypto/tls
		cipher_suites.go#L417: 	h := sha1.New
		key_agreement.go#L108: 	hsha1 := sha1.New()
		prf.go#L49: 	hashSHA1 := sha1.New
		prf.go#L163: 	return finishedHash{sha1.New(), sha1.New(), md5.New(), md5.New(), buffer, version, prf}

	github.com/gotd/td/internal/crypto
		keys_old.go#L13: 	h := sha1.New() // #nosec G401
		keys_old.go#L25: 	h := sha1.New() // #nosec G401
		keys_old.go#L38: 	h := sha1.New() // #nosec G401
		keys_old.go#L50: 	h := sha1.New() // #nosec G401
		rsa_fingerprint.go#L23: 	h := sha1.New() // #nosec

	github.com/gotd/td/session/tdesktop
		local_key.go#L24: 	key := pbkdf2.Key(passcode, salt, iters, len(r), sha1.New)

	nhooyr.io/websocket
		accept.go#L347: 	h := sha1.New()