1 type derived from MD5
System.Security.Cryptography (1)
artifacts\obj\System.Security.Cryptography\Debug\net10.0\System.Security.Cryptography.notsupported.cs (1)
1905public sealed partial class MD5CryptoServiceProvider : System.Security.Cryptography.MD5
18 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
Microsoft.DotNet.Build.Tasks.Installers (2)
src\CreateMD5SumsFile.cs (2)
37using MD5 md5 = MD5.Create();
Microsoft.DotNet.SignCheckLibrary (1)
Utils.cs (1)
53return MD5.Create();
Microsoft.DotNet.SignTool.Tests (4)
SignToolTests.cs (4)
438using MD5 md5 = MD5.Create(); 490using MD5 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)
190hashAlgorithm = MD5.Create();
System.Security.Cryptography (2)
artifacts\obj\System.Security.Cryptography\Debug\net10.0\System.Security.Cryptography.notsupported.cs (2)
1882public static new System.Security.Cryptography.MD5 Create() { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } 1885public static new System.Security.Cryptography.MD5? Create(string algName) { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); }
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
34[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.MD5))]