45 references to 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 (25)
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\CapiHelper.Unix.cs (3)
45SHA384 => HashAlgorithmName.SHA384, 59Oids.Sha384 => HashAlgorithmName.SHA384, 74return HashAlgorithmName.SHA384;
System\Security\Cryptography\HashAlgorithmName.cs (1)
155value = SHA384;
System\Security\Cryptography\Helpers.cs (1)
361else if (hashAlgorithmName == HashAlgorithmName.SHA384)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
254hashAlgorithm != 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" />. 328hashAlgorithmName == HashAlgorithmName.SHA384.Name ||
System\Security\Cryptography\RSAEncryptionPadding.cs (1)
31public 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)
331hashAlg = HashAlgorithmName.SHA384;
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
29else if (hashAlgorithm == HashAlgorithmName.SHA384)
System\Security\Cryptography\X509Certificates\RSAPkcs1X509SignatureGenerator.cs (1)
55else if (hashAlgorithm == HashAlgorithmName.SHA384)
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
43else if (hashAlgorithm == HashAlgorithmName.SHA384)
System\Security\Cryptography\X509Certificates\X509SubjectKeyIdentifierExtension.cs (2)
192return HashSubjectPublicKeyInfo(key, HashAlgorithmName.SHA384); 198return HashSubjectPublicKeyLeft160Bits(key, HashAlgorithmName.SHA384);
System.Security.Cryptography.Cose (5)
System\Security\Cryptography\Cose\CoseHelpers.cs (2)
267KnownCoseAlgorithms.ES384 => HashAlgorithmName.SHA384, 278KnownCoseAlgorithms.PS384 or KnownCoseAlgorithms.RS384 => HashAlgorithmName.SHA384,
System\Security\Cryptography\Cose\CoseSigner.cs (3)
183nameof(HashAlgorithmName.SHA384) => KnownCoseAlgorithms.ES384, 197nameof(HashAlgorithmName.SHA384) => KnownCoseAlgorithms.PS384, 208nameof(HashAlgorithmName.SHA384) => KnownCoseAlgorithms.RS384,
System.Security.Cryptography.Pkcs (12)
Internal\Cryptography\PkcsHelpers.cs (2)
68return HashAlgorithmName.SHA384; 96if (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 (2)
21lookup.Add(Oids.DsaWithSha384, new DSACmsSignature(Oids.DsaWithSha384, HashAlgorithmName.SHA384)); 135hashAlgorithmName == HashAlgorithmName.SHA384 ? Oids.DsaWithSha384 :
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (2)
18lookup.Add(Oids.ECDsaWithSha384, new ECDsaCmsSignature(Oids.ECDsaWithSha384, HashAlgorithmName.SHA384)); 137hashAlgorithmName == HashAlgorithmName.SHA384 ? Oids.ECDsaWithSha384 :
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (2)
21lookup.Add(Oids.RsaPkcs1Sha384, new RSAPkcs1CmsSignature(Oids.RsaPkcs1Sha384, HashAlgorithmName.SHA384)); 354else if (hashAlgorithmName == HashAlgorithmName.SHA384)