3 overrides of SignHash
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
729public override byte[] SignHash(byte[] hash, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
228public override byte[] SignHash(byte[] hash, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
56public override byte[] SignHash(
12 references to SignHash
System.Security.Cryptography (11)
System\Security\Cryptography\RSA.cs (7)
343byte[] result = SignHash(hash.ToArray(), hashAlgorithm, padding); 398return SignHash(hash, hashAlgorithm, padding); 408return SignHash(hash, hashAlgorithm, padding); 454/// or <see cref="SignHash(byte[], HashAlgorithmName, RSASignaturePadding)" />. 513/// or <see cref="SignHash(byte[], HashAlgorithmName, RSASignaturePadding)" />. 560/// or <see cref="SignHash(byte[], HashAlgorithmName, RSASignaturePadding)" />. 615/// or <see cref="SignHash(byte[], HashAlgorithmName, RSASignaturePadding)" />.
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (2)
239return _impl.SignHash(hash, hashAlgorithm, padding); 264return _impl.SignHash(rgbHash, algName, RSASignaturePadding.Pkcs1);
System\Security\Cryptography\RSAPKCS1SignatureFormatter.cs (1)
55return _rsaKey.SignHash(rgbHash, new HashAlgorithmName(_algName), RSASignaturePadding.Pkcs1);
System\Security\Cryptography\RSAWrapper.cs (1)
60_wrapped.SignHash(hash, hashAlgorithm, padding);
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
149signatureValue = privateKey.SignHash(