3 types derived from SHA512
System.Security.Cryptography (3)
System\Security\Cryptography\SHA512.cs (1)
186private 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
37 references to SHA512
aspire (3)
Agents\Playwright\PlaywrightCliInstaller.cs (1)
347var hashBytes = SHA512.HashData(stream);
Utils\CliDownloader.cs (2)
188using var sha512 = SHA512.Create();
Aspire.Cli.Tests (4)
Agents\PlaywrightCliInstallerTests.cs (4)
149var hash = SHA512.HashData(content); 188var hash = SHA512.HashData(content); 223var hash = SHA512.HashData(content); 263var hash = SHA512.HashData(content);
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.CodeAnalysis (3)
CryptographicHashProvider.cs (2)
101return SHA512.Create(); 146return SHA512.Create();
Text\SourceHashAlgorithms.cs (1)
65SourceHashAlgorithm.Sha512 => SHA512.Create(),
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\Text\SourceHashAlgorithms.cs (1)
65SourceHashAlgorithm.Sha512 => SHA512.Create(),
Microsoft.DotNet.Arcade.Sdk (1)
src\GenerateChecksums.cs (1)
44using(HashAlgorithm hashAlgorithm = SHA512.Create())
Microsoft.DotNet.SignCheckLibrary (1)
Utils.cs (1)
57return 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 (2)
System\Net\Security\Pal.Managed\EndpointChannelBindingToken.cs (1)
53return SHA512.HashData(cert.RawDataMemory.Span);
System\Net\Security\SslStream.Protocol.cs (1)
244Span<byte> certHash = stackalloc byte[SHA512.HashSizeInBytes];
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)
1069return 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)
43public static new SHA512 Create() => new Implementation(); 47public 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();
System.ServiceModel.Http (2)
System\ServiceModel\Channels\HttpChannelFactory.cs (2)
42private SHA512 _hashAlgorithm; 183_hashAlgorithm = SHA512.Create();
System.ServiceModel.Primitives (1)
System\IdentityModel\CryptoHelper.cs (1)
234return SHA512.Create();