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