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