14 references to SHA3_384
System.Security.Cryptography (9)
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
219if (algName == HashAlgorithmName.SHA3_384)
System\Security\Cryptography\HashAlgorithmName.cs (1)
164value = SHA3_384;
System\Security\Cryptography\Helpers.cs (1)
373else if (hashAlgorithmName == HashAlgorithmName.SHA3_384)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
260hashAlgorithm != HashAlgorithmName.SHA3_384 &&
System\Security\Cryptography\Rfc2898DeriveBytes.OneShot.cs (1)
335hashAlgorithmName == HashAlgorithmName.SHA3_384.Name ||
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
368hashAlgorithm == HashAlgorithmName.SHA3_384 ||
System\Security\Cryptography\RSAEncryptionPadding.cs (1)
46public static RSAEncryptionPadding OaepSHA3_384 { get; } = CreateOaep(HashAlgorithmName.SHA3_384);
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
41else if (hashAlgorithm == HashAlgorithmName.SHA3_384)
System\Security\Cryptography\X509Certificates\RSAPkcs1X509SignatureGenerator.cs (1)
67else if (hashAlgorithm == HashAlgorithmName.SHA3_384)
System.Security.Cryptography.Pkcs (5)
Internal\Cryptography\PkcsHelpers.cs (1)
61return HashAlgorithmName.SHA3_384;
src\libraries\Common\src\Internal\Cryptography\PkcsHelpers.cs (1)
219if (algName == HashAlgorithmName.SHA3_384)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (2)
22lookup.Add(Oids.ECDsaWithSha3_384, new ECDsaCmsSignature(Oids.ECDsaWithSha3_384, HashAlgorithmName.SHA3_384)); 141hashAlgorithmName == HashAlgorithmName.SHA3_384 ? Oids.ECDsaWithSha3_384 :
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
25lookup.Add(Oids.RsaPkcs1Sha3_384, new RSAPkcs1CmsSignature(Oids.RsaPkcs1Sha3_384, HashAlgorithmName.SHA3_384));