2 writes to _rsaKey
mscorlib (2)
system\security\cryptography\rsapkcs1signaturedeformatter.cs (2)
41
_rsaKey
= (RSA) key;
52
_rsaKey
= (RSA) key;
7 references to _rsaKey
mscorlib (7)
system\security\cryptography\rsapkcs1signaturedeformatter.cs (7)
70
if (
_rsaKey
== null)
74
if (
_rsaKey
is RSACryptoServiceProvider) {
78
return ((RSACryptoServiceProvider)
_rsaKey
).VerifyHash(rgbHash, calgHash, rgbSignature);
82
return
_rsaKey
.VerifyHash(rgbHash, rgbSignature, hashAlgorithmName, RSASignaturePadding.Pkcs1);
87
byte[] pad = Utils.RsaPkcs1Padding(
_rsaKey
, CryptoConfig.EncodeOID(_strOID), rgbHash);
90
return Utils.CompareBigIntArrays(
_rsaKey
.EncryptValue(rgbSignature), pad);
97
_rsaOverridesVerifyHash = Utils.DoesRsaKeyOverride(
_rsaKey
, "VerifyHash", new Type[] { typeof(byte[]), typeof(byte[]), typeof(HashAlgorithmName), typeof(RSASignaturePadding) });