20 references to SHA1
System.Security.Cryptography (20)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
132case HashAlgorithmNames.SHA1: return EvpSha1(); 161case HashAlgorithmNames.SHA1:
src\libraries\Common\src\System\Security\Cryptography\MLDsa.cs (1)
2323return HashAlgorithmNames.SHA1;
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
80case HashAlgorithmNames.SHA1:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
540case HashAlgorithmNames.SHA1:
System\Security\Cryptography\CryptographicOperations.cs (1)
1066case HashAlgorithmNames.SHA1:
System\Security\Cryptography\DSASignatureDeformatter.cs (1)
28if (!strName.Equals(HashAlgorithmNames.SHA1, StringComparison.InvariantCultureIgnoreCase))
System\Security\Cryptography\DSASignatureFormatter.cs (1)
28if (!strName.Equals(HashAlgorithmNames.SHA1, StringComparison.InvariantCultureIgnoreCase))
System\Security\Cryptography\HashAlgorithmNames.cs (3)
34return HashAlgorithmNames.SHA1; 68if (hashAlgorithmName.Equals(SHA1, StringComparison.OrdinalIgnoreCase)) 70return SHA1;
System\Security\Cryptography\Helpers.cs (2)
423case HashAlgorithmNames.SHA1: 439case HashAlgorithmNames.SHA1:
System\Security\Cryptography\HMACCommon.cs (1)
94case HashAlgorithmNames.SHA1:
System\Security\Cryptography\HMACSHA1.cs (3)
24static string IHMACStatic.HashAlgorithmName => HashAlgorithmNames.SHA1; 47this.HashName = HashAlgorithmNames.SHA1; 48_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize);
System\Security\Cryptography\SHA1.cs (2)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA1; 193_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA1);
System\Security\Cryptography\SHA1Managed.cs (1)
18_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA1);