3 types derived from SHA512
System.Security.Cryptography (3)
System\Security\Cryptography\SHA512.cs (1)
237private sealed class Implementation : SHA512
System\Security\Cryptography\SHA512CryptoServiceProvider.cs (1)
14public sealed class SHA512CryptoServiceProvider : SHA512
System\Security\Cryptography\SHA512Managed.cs (1)
12public sealed class SHA512Managed : SHA512
24 references to SHA512
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
50private SHA512 _hashAlgorithm; 191_hashAlgorithm = SHA512.Create();
Microsoft.AspNetCore.Identity.Test (2)
IdentityUIScriptsTest.cs (2)
52using (var alg512 = SHA512.Create())
Microsoft.Build.Tasks.Core (1)
FileIO\GetFileHash.cs (1)
31["SHA512"] = SHA512.Create,
Microsoft.CodeAnalysis (1)
CryptographicHashProvider.cs (1)
128return SHA512.Create();
Microsoft.DotNet.Arcade.Sdk (1)
src\GenerateChecksums.cs (1)
44using(HashAlgorithm hashAlgorithm = SHA512.Create())
Microsoft.DotNet.SignCheckLibrary (1)
Utils.cs (1)
53return SHA512.Create();
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
928[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.SHA512))]
netstandard (1)
netstandard.cs (1)
1934[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.SHA512))]
System.Net.Security (1)
System\Net\Security\Pal.Managed\EndpointChannelBindingToken.cs (1)
53return SHA512.HashData(cert.RawDataMemory.Span);
System.Private.Xml (1)
System\Xml\Serialization\Compiler.cs (1)
95byte[] hash = SHA512.HashData(valueBytes);
System.Security.Cryptography (10)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
90digestLengthInBytes = SHA512.HashSizeInBytes;
System\Security\Cryptography\CapiHelper.Unix.cs (2)
46SHA512 => HashAlgorithmName.SHA512, 75if (typeof(SHA512).IsAssignableFrom(hashAlgType))
System\Security\Cryptography\CryptographicOperations.cs (1)
782return SHA512.HashSizeInBytes;
System\Security\Cryptography\HashAlgorithmNames.cs (1)
39if (hashAlgorithm is SHA512)
System\Security\Cryptography\HMACCommon.cs (1)
80modifiedKey = SHA512.HashData(key);
System\Security\Cryptography\SHA512.cs (3)
36public static new SHA512 Create() => new Implementation(); 40public static new SHA512? Create(string hashName) => (SHA512?)CryptoConfig.CreateFromName(hashName);
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
50cbSalt = SHA512.HashSizeInBytes;
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
60[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.SHA512))]
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\RSAPKCS1SHA512SignatureDescription.cs (1)
18return SHA512.Create();