2 overrides of VerifyData
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
286
public override bool
VerifyData
(ReadOnlySpan<byte> data, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
134
public override bool
VerifyData
(
4 references to VerifyData
System.Security.Cryptography (4)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
297
return _impl.
VerifyData
(data, signature, hashAlgorithm, padding);
System\Security\Cryptography\RSAWrapper.cs (1)
139
_wrapped.
VerifyData
(data, signature, hashAlgorithm, padding);
System\Security\Cryptography\X509Certificates\CertificateRequest.Load.cs (2)
316
return rsa.
VerifyData
(
363
return rsa.
VerifyData
(toBeSigned, signature, hashAlg, RSASignaturePadding.Pkcs1);