2 types derived from MD5
System.Security.Cryptography (2)
System\Security\Cryptography\MD5.cs (1)
199private sealed class Implementation : MD5
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
11public sealed class MD5CryptoServiceProvider : MD5
28 references to MD5
ILCompiler.Diagnostics (1)
PerfMapWriter.cs (1)
102byte[] hash = MD5.HashData(inputHash.ToArray());
ILCompiler.ReadyToRun (1)
Compiler\CryptographicHashProvider.cs (1)
150return MD5.Create();
Microsoft.CodeAnalysis (1)
CryptographicHashProvider.cs (1)
150return MD5.Create();
Microsoft.DotNet.Build.Tasks.Installers (2)
src\CreateMD5SumsFile.cs (2)
37using MD5 md5 = MD5.Create();
Mono.Cecil (1)
Mono.Cecil\AssemblyNameReference.cs (1)
117 algorithm = MD5.Create ();
Mono.Cecil.Mdb (4)
Mono.CompilerServices.SymbolWriter\MonoSymbolTable.cs (4)
732 MD5 md5 = MD5.Create (); 791 MD5 md5 = MD5.Create ();
mscorlib (1)
src\runtime\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)
190hashAlgorithm = 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)
502Debug.Assert(written == MD5.HashSizeInBytes);
System.Security.Cryptography (11)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
78digestLengthInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\CapiHelper.Windows.cs (3)
1059if (hashAlg is MD5) 1079if (typeof(MD5).IsAssignableFrom(hashAlgType)) 1107CapiHelper.CALG_MD5 => MD5.Create(),
System\Security\Cryptography\CryptographicOperations.cs (1)
1132return MD5.HashSizeInBytes;
System\Security\Cryptography\HashAlgorithmNames.cs (1)
41if (hashAlgorithm is MD5)
System\Security\Cryptography\HashProviderDispenser.Windows.cs (1)
202digestSizeInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\HMACCommon.cs (1)
98modifiedKey = MD5.HashData(key);
System\Security\Cryptography\MD5.cs (3)
48public static new MD5 Create() => new Implementation(); 52public 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))]