2 overrides of SignData
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
191public override byte[] SignData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
106public override byte[] SignData(
4 references to SignData
System.Security.Cryptography (4)
System\Security\Cryptography\RSA.cs (1)
376return SignData(data, 0, data.Length, hashAlgorithm, padding);
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (2)
202return _impl.SignData(data, offset, count, hashAlgorithm, padding); 220_impl.SignData(buffer, offset, count, CapiHelper.ObjToHashAlgorithmName(halg), RSASignaturePadding.Pkcs1);
System\Security\Cryptography\RSAWrapper.cs (1)
112_wrapped.SignData(data, offset, count, hashAlgorithm, padding);