2 overrides of SignHash
mscorlib (1)
system\security\cryptography\rsacryptoserviceprovider.cs (1)
605
public override byte[]
SignHash
(byte[] hash, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding) {
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
463
public override byte[]
SignHash
(byte[] hash, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
3 references to SignHash
mscorlib (3)
system\security\cryptography\rsa.cs (2)
134
return
SignHash
(hash, hashAlgorithm, padding);
149
return
SignHash
(hash, hashAlgorithm, padding);
system\security\cryptography\rsapkcs1signatureformatter.cs (1)
73
return _rsaKey.
SignHash
(rgbHash, hashAlgorithmName, RSASignaturePadding.Pkcs1);