13 references to SHA3_512
System.Security.Cryptography (8)
System\Security\Cryptography\HashAlgorithmName.cs (1)
167value = SHA3_512;
System\Security\Cryptography\Helpers.cs (1)
377else if (hashAlgorithmName == HashAlgorithmName.SHA3_512)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
258hashAlgorithm != HashAlgorithmName.SHA3_512)
System\Security\Cryptography\Rfc2898DeriveBytes.OneShot.cs (1)
336hashAlgorithmName == HashAlgorithmName.SHA3_512.Name)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
369hashAlgorithm == HashAlgorithmName.SHA3_512)
System\Security\Cryptography\RSAEncryptionPadding.cs (1)
51public static RSAEncryptionPadding OaepSHA3_512 { get; } = CreateOaep(HashAlgorithmName.SHA3_512);
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
45else if (hashAlgorithm == HashAlgorithmName.SHA3_512)
System\Security\Cryptography\X509Certificates\RSAPkcs1X509SignatureGenerator.cs (1)
71else if (hashAlgorithm == HashAlgorithmName.SHA3_512)
System.Security.Cryptography.Pkcs (5)
Internal\Cryptography\PkcsHelpers.cs (2)
81return HashAlgorithmName.SHA3_512; 105if (algName == HashAlgorithmName.SHA3_512)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (2)
23lookup.Add(Oids.ECDsaWithSha3_512, new ECDsaCmsSignature(Oids.ECDsaWithSha3_512, HashAlgorithmName.SHA3_512)); 142hashAlgorithmName == HashAlgorithmName.SHA3_512 ? Oids.ECDsaWithSha3_512 :
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
26lookup.Add(Oids.RsaPkcs1Sha3_512, new RSAPkcs1CmsSignature(Oids.RsaPkcs1Sha3_512, HashAlgorithmName.SHA3_512));