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