const crypto.SHA1

20 uses

	crypto (current package)
		crypto.go#L29: 	case SHA1:
		crypto.go#L71: 	SHA1                        // import crypto/sha1
		crypto.go#L94: 	SHA1:        20,

	crypto/sha1
		sha1.go#L21: 	crypto.RegisterHash(crypto.SHA1, New)

	crypto/tls
		auth.go#L138: 		hash = crypto.SHA1
		auth.go#L161: 		return signatureECDSA, crypto.SHA1, nil
		auth.go#L187: 	{PKCS1WithSHA1, 15 + crypto.SHA1.Size() + 11},
		common.go#L1783: 		if sigType == signaturePKCS1v15 || sigHash == crypto.SHA1 {
		common.go#L1788: 		if sigHash == crypto.SHA1 {
		handshake_client.go#L805: 			if sigHash == crypto.SHA1 {
		handshake_client_tls13.go#L665: 	if sigType == signaturePKCS1v15 || sigHash == crypto.SHA1 {
		handshake_server.go#L784: 			if sigHash == crypto.SHA1 {
		handshake_server_tls13.go#L1094: 		if sigType == signaturePKCS1v15 || sigHash == crypto.SHA1 {
		key_agreement.go#L203: 		if sigHash == crypto.SHA1 {
		key_agreement.go#L343: 		if sigHash == crypto.SHA1 {

	crypto/x509
		x509.go#L372: 	{SHA1WithRSA, "SHA1-RSA", oidSignatureSHA1WithRSA, asn1.NullRawValue, RSA, crypto.SHA1, false},
		x509.go#L373: 	{SHA1WithRSA, "SHA1-RSA", oidISOSignatureSHA1WithRSA, asn1.NullRawValue, RSA, crypto.SHA1, false},
		x509.go#L380: 	{DSAWithSHA1, "DSA-SHA1", oidSignatureDSAWithSHA1, emptyRawValue, DSA, crypto.SHA1, false},
		x509.go#L382: 	{ECDSAWithSHA1, "ECDSA-SHA1", oidSignatureECDSAWithSHA1, emptyRawValue, ECDSA, crypto.SHA1, false},
		x509.go#L999: 	case crypto.SHA1: