27 references to SHA512
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\NetCorePbkdf2Provider.cs (1)
34algorithmName = HashAlgorithmName.SHA512;
Microsoft.AspNetCore.Identity (5)
Passkeys\CredentialPublicKey.cs (5)
194COSEAlgorithmIdentifier.ES512 => HashAlgorithmName.SHA512, 197COSEAlgorithmIdentifier.PS512 => HashAlgorithmName.SHA512, 200COSEAlgorithmIdentifier.RS512 => HashAlgorithmName.SHA512, 205(COSEAlgorithmIdentifier)13 => HashAlgorithmName.SHA512, 206COSEAlgorithmIdentifier.EdDSA => HashAlgorithmName.SHA512,
Microsoft.AspNetCore.Identity.Test (3)
Passkeys\CredentialKeyPair.cs (3)
166COSEAlgorithmIdentifier.ES512 => HashAlgorithmName.SHA512, 169COSEAlgorithmIdentifier.PS512 => HashAlgorithmName.SHA512, 172COSEAlgorithmIdentifier.RS512 => HashAlgorithmName.SHA512,
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
PDB\PortablePdbTests.cs (1)
171WithPdbChecksumAlgorithm(HashAlgorithmName.SHA512));
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
PDB\PortablePdbTests.vb (1)
81WithPdbChecksumAlgorithm(HashAlgorithmName.SHA512))
System.Security.Cryptography.Cose (6)
System\Security\Cryptography\Cose\CoseKey.cs (6)
77CoseAlgorithm.ES512 => new CoseKey(ecdsaKey, HashAlgorithmName.SHA512), 87CoseAlgorithm.RS512 => new CoseKey(rsaKey, RSASignaturePadding.Pkcs1, HashAlgorithmName.SHA512), 90CoseAlgorithm.PS512 => new CoseKey(rsaKey, RSASignaturePadding.Pss, HashAlgorithmName.SHA512), 278nameof(HashAlgorithmName.SHA512) => CoseAlgorithm.PS512, 289nameof(HashAlgorithmName.SHA512) => CoseAlgorithm.RS512, 300nameof(HashAlgorithmName.SHA512) => CoseAlgorithm.ES512,
System.Security.Cryptography.Pkcs (10)
Internal\Cryptography\PkcsHelpers.cs (1)
54return HashAlgorithmName.SHA512;
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
224if (algName == HashAlgorithmName.SHA512)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
46hashAlgorithm = HashAlgorithmName.SHA512;
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
290else if (prf == HashAlgorithmName.SHA512) 753Oids.HmacWithSha512 => HashAlgorithmName.SHA512,
src\libraries\Common\src\System\Security\Cryptography\Pkcs12Kdf.cs (1)
26(HashAlgorithmName.SHA512, 512, 1024),
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (1)
21lookup.Add(Oids.DsaWithSha512, new DSACmsSignature(Oids.DsaWithSha512, HashAlgorithmName.SHA512));
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
19lookup.Add(Oids.ECDsaWithSha512, new ECDsaCmsSignature(Oids.ECDsaWithSha512, HashAlgorithmName.SHA512));
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (2)
22lookup.Add(Oids.RsaPkcs1Sha512, new RSAPkcs1CmsSignature(Oids.RsaPkcs1Sha512, HashAlgorithmName.SHA512)); 370else if (hashAlgorithmName == HashAlgorithmName.SHA512)