2 writes to _rsaKey
mscorlib (2)
system\security\cryptography\rsapkcs1signatureformatter.cs (2)
34
_rsaKey
= (RSA) key;
45
_rsaKey
= (RSA) key;
7 references to _rsaKey
mscorlib (7)
system\security\cryptography\rsapkcs1signatureformatter.cs (7)
61
if (
_rsaKey
== null)
65
if (
_rsaKey
is RSACryptoServiceProvider) {
69
return ((RSACryptoServiceProvider)
_rsaKey
).SignHash(rgbHash, calgHash);
73
return
_rsaKey
.SignHash(rgbHash, hashAlgorithmName, RSASignaturePadding.Pkcs1);
78
byte[] pad = Utils.RsaPkcs1Padding(
_rsaKey
, CryptoConfig.EncodeOID(_strOID), rgbHash);
80
return
_rsaKey
.DecryptValue(pad);
87
_rsaOverridesSignHash = Utils.DoesRsaKeyOverride(
_rsaKey
, "SignHash", new Type[] { typeof(byte[]), typeof(HashAlgorithmName), typeof(RSASignaturePadding) });