26 references to SHA384
Microsoft.AspNetCore.Identity (4)
Passkeys\CredentialPublicKey.cs (4)
193COSEAlgorithmIdentifier.ES384 => HashAlgorithmName.SHA384, 196COSEAlgorithmIdentifier.PS384 => HashAlgorithmName.SHA384, 199COSEAlgorithmIdentifier.RS384 => HashAlgorithmName.SHA384, 204(COSEAlgorithmIdentifier)12 => HashAlgorithmName.SHA384,
Microsoft.AspNetCore.Identity.Test (3)
Passkeys\CredentialKeyPair.cs (3)
165COSEAlgorithmIdentifier.ES384 => HashAlgorithmName.SHA384, 168COSEAlgorithmIdentifier.PS384 => HashAlgorithmName.SHA384, 171COSEAlgorithmIdentifier.RS384 => HashAlgorithmName.SHA384,
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
PDB\PortablePdbTests.cs (1)
230WithPdbChecksumAlgorithm(HashAlgorithmName.SHA384).
Microsoft.CodeAnalysis.UnitTests (1)
Emit\EmitOptionsTests.cs (1)
61TestProperty((old, value) => old.WithPdbChecksumAlgorithm(value), opt => opt.PdbChecksumAlgorithm, HashAlgorithmName.SHA384);
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
PDB\PortablePdbTests.vb (1)
133WithPdbChecksumAlgorithm(HashAlgorithmName.SHA384).
System.Security.Cryptography.Cose (6)
System\Security\Cryptography\Cose\CoseKey.cs (6)
76CoseAlgorithm.ES384 => new CoseKey(ecdsaKey, HashAlgorithmName.SHA384), 86CoseAlgorithm.RS384 => new CoseKey(rsaKey, RSASignaturePadding.Pkcs1, HashAlgorithmName.SHA384), 89CoseAlgorithm.PS384 => new CoseKey(rsaKey, RSASignaturePadding.Pss, HashAlgorithmName.SHA384), 277nameof(HashAlgorithmName.SHA384) => CoseAlgorithm.PS384, 288nameof(HashAlgorithmName.SHA384) => CoseAlgorithm.RS384, 299nameof(HashAlgorithmName.SHA384) => CoseAlgorithm.ES384,
System.Security.Cryptography.Pkcs (10)
Internal\Cryptography\PkcsHelpers.cs (1)
51return HashAlgorithmName.SHA384;
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
222if (algName == HashAlgorithmName.SHA384)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
42hashAlgorithm = HashAlgorithmName.SHA384;
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
286else if (prf == HashAlgorithmName.SHA384) 752Oids.HmacWithSha384 => HashAlgorithmName.SHA384,
src\libraries\Common\src\System\Security\Cryptography\Pkcs12Kdf.cs (1)
25(HashAlgorithmName.SHA384, 384, 1024),
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (1)
20lookup.Add(Oids.DsaWithSha384, new DSACmsSignature(Oids.DsaWithSha384, HashAlgorithmName.SHA384));
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
18lookup.Add(Oids.ECDsaWithSha384, new ECDsaCmsSignature(Oids.ECDsaWithSha384, HashAlgorithmName.SHA384));
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (2)
21lookup.Add(Oids.RsaPkcs1Sha384, new RSAPkcs1CmsSignature(Oids.RsaPkcs1Sha384, HashAlgorithmName.SHA384)); 366else if (hashAlgorithmName == HashAlgorithmName.SHA384)