2 overrides of VerifyData
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
286public override bool VerifyData(ReadOnlySpan<byte> data, ReadOnlySpan<byte> signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
System\Security\Cryptography\RSAWrapper.cs (1)
134public override bool VerifyData(
4 references to VerifyData
System.Security.Cryptography (4)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
297return _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)
316return rsa.VerifyData( 363return rsa.VerifyData(toBeSigned, signature, hashAlg, RSASignaturePadding.Pkcs1);