22 references to MD5
System.Net.Security (5)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (5)
471using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, ntlm2hash)) 497using (var md5 = IncrementalHash.CreateHash(HashAlgorithmName.MD5)) 608using (var md5 = IncrementalHash.CreateHash(HashAlgorithmName.MD5)) 733using (var hmacMic = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, exportedSessionKey)) 776using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, signingKey))
System.Security.Cryptography (10)
src\runtime\src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
216if (algName == HashAlgorithmName.MD5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
30hashAlgorithm = HashAlgorithmName.MD5;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
124digestAlgorithmName = HashAlgorithmName.MD5; 128digestAlgorithmName = HashAlgorithmName.MD5;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs12Kdf.cs (1)
22(HashAlgorithmName.MD5, 128, 512),
System\Security\Cryptography\CapiHelper.Windows.cs (1)
1118CapiHelper.CALG_MD5 => HashAlgorithmName.MD5,
System\Security\Cryptography\HashAlgorithmName.cs (1)
146value = MD5;
System\Security\Cryptography\Helpers.cs (1)
388else if (hashAlgorithmName == HashAlgorithmName.MD5)
System\Security\Cryptography\HKDF.Windows.cs (1)
87return hashAlgorithmName == HashAlgorithmName.MD5;
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
18_incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.MD5);
System.Security.Cryptography.Pkcs (7)
Internal\Cryptography\PkcsHelpers.cs (1)
42return HashAlgorithmName.MD5;
src\runtime\src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
216if (algName == HashAlgorithmName.MD5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
30hashAlgorithm = HashAlgorithmName.MD5;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
124digestAlgorithmName = HashAlgorithmName.MD5; 128digestAlgorithmName = HashAlgorithmName.MD5;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs12Kdf.cs (1)
22(HashAlgorithmName.MD5, 128, 512),
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
381Debug.Assert(hashAlgorithmName == HashAlgorithmName.MD5, $"Unsupported digest algorithm '{hashAlgorithmName.Name}'");