2 types derived from MD5
System.Security.Cryptography (2)
System\Security\Cryptography\MD5.cs (1)
247private sealed class Implementation : MD5
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
11public sealed class MD5CryptoServiceProvider : MD5
21 references to MD5
Microsoft.CodeAnalysis (1)
CryptographicHashProvider.cs (1)
132return MD5.Create();
Microsoft.DotNet.Build.Tasks.Feed (4)
src\AzureStorageExtensions.cs (2)
19using var md5 = MD5.Create(); // lgtm [cs/weak-crypto] Azure Storage specifies use of MD5
src\common\AzureStorageUtils.cs (2)
88using (var md5 = MD5.Create()) // lgtm [cs/weak-crypto] Azure Storage specifies use of MD5
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
896[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.MD5))]
netstandard (1)
netstandard.cs (1)
1894[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.MD5))]
PresentationBuildTasks (1)
MS\Internal\Tasks\TaskFileService.cs (1)
193hashAlgorithm = MD5.Create();
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.Digest.cs (2)
228written = MD5.HashData(dataBytes, hashBuffer); 229Debug.Assert(written == MD5.HashSizeInBytes);
System.Net.Security (1)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
448Debug.Assert(written == MD5.HashSizeInBytes);
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
78digestLengthInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\CapiHelper.Unix.cs (2)
47MD5 => HashAlgorithmName.MD5, 77if (typeof(MD5).IsAssignableFrom(hashAlgType))
System\Security\Cryptography\CryptographicOperations.cs (1)
807return MD5.HashSizeInBytes;
System\Security\Cryptography\HashAlgorithmNames.cs (1)
41if (hashAlgorithm is MD5)
System\Security\Cryptography\HMACCommon.cs (1)
98modifiedKey = MD5.HashData(key);
System\Security\Cryptography\MD5.cs (3)
38public static new MD5 Create() => new Implementation(); 42public static new MD5? Create(string algName) => (MD5?)CryptoConfig.CreateFromName(algName);
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
34[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.MD5))]