2 overrides of VerifyData
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
272public override bool VerifyData(byte[] data, int offset, int count, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
125public override bool VerifyData(
3 references to VerifyData
System.Security.Cryptography (3)
System\Security\Cryptography\RSA.cs (1)
638return VerifyData(data, 0, data.Length, signature, hashAlgorithm, padding);
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
283return _impl.VerifyData(data, offset, count, signature, hashAlgorithm, padding);
System\Security\Cryptography\RSAWrapper.cs (1)
132_wrapped.VerifyData(data, offset, count, signature, hashAlgorithm, padding);