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