52 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 (26)
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\CapiHelper.Unix.cs (3)
45
SHA384 => HashAlgorithmName.
SHA384
,
59
Oids.Sha384 => HashAlgorithmName.
SHA384
,
74
return HashAlgorithmName.
SHA384
;
System\Security\Cryptography\HashAlgorithmName.cs (1)
155
value =
SHA384
;
System\Security\Cryptography\Helpers.cs (1)
368
else if (hashAlgorithmName == HashAlgorithmName.
SHA384
)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
257
hashAlgorithm != HashAlgorithmName.
SHA384
&&
System\Security\Cryptography\Rfc2898DeriveBytes.OneShot.cs (7)
38
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
73
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
110
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
149
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
192
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
237
/// <see cref="HashAlgorithmName.
SHA384
" />, and <see cref="HashAlgorithmName.SHA512" />.
328
hashAlgorithmName == HashAlgorithmName.
SHA384
.Name ||
System\Security\Cryptography\RSAEncryptionPadding.cs (1)
31
public static RSAEncryptionPadding OaepSHA384 { get; } = CreateOaep(HashAlgorithmName.
SHA384
);
System\Security\Cryptography\SHA384CryptoServiceProvider.cs (1)
21
_incrementalHash = IncrementalHash.CreateHash(HashAlgorithmName.
SHA384
);
System\Security\Cryptography\X509Certificates\CertificateRequest.Load.cs (1)
338
hashAlg = HashAlgorithmName.
SHA384
;
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
29
else if (hashAlgorithm == HashAlgorithmName.
SHA384
)
System\Security\Cryptography\X509Certificates\RSAPkcs1X509SignatureGenerator.cs (1)
55
else if (hashAlgorithm == HashAlgorithmName.
SHA384
)
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
43
else if (hashAlgorithm == HashAlgorithmName.
SHA384
)
System\Security\Cryptography\X509Certificates\X509SubjectKeyIdentifierExtension.cs (2)
192
return HashSubjectPublicKeyInfo(key, HashAlgorithmName.
SHA384
);
198
return HashSubjectPublicKeyLeft160Bits(key, 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
)