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