2 overrides of VerifyData
System.Security.Cryptography (2)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
261public override bool VerifyData(byte[] data, int offset, int count, byte[] signature, HashAlgorithmName hashAlgorithm)
System\Security\Cryptography\DSAWrapper.cs (1)
38public override bool VerifyData(
3 references to VerifyData
System.Security.Cryptography (3)
System\Security\Cryptography\DSA.cs (1)
303return VerifyData(data, 0, data.Length, signature, hashAlgorithm);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
266return _impl.VerifyData(data, offset, count, signature, hashAlgorithm);
System\Security\Cryptography\DSAWrapper.cs (1)
44_wrapped.VerifyData(data, offset, count, signature, hashAlgorithm);