2 writes to _rsaKey
mscorlib (2)
system\security\cryptography\rsaoaepkeyexchangedeformatter.cs (2)
25
_rsaKey
= (RSA) key;
57
_rsaKey
= (RSA) key;
4 references to _rsaKey
mscorlib (4)
system\security\cryptography\rsaoaepkeyexchangedeformatter.cs (4)
43
if (
_rsaKey
== null)
47
return
_rsaKey
.Decrypt(rgbData, RSAEncryptionPadding.OaepSHA1);
49
return Utils.RsaOaepDecrypt(
_rsaKey
, SHA1.Create(), new PKCS1MaskGenerationMethod(), rgbData);
64
_rsaOverridesDecrypt = Utils.DoesRsaKeyOverride(
_rsaKey
, "Decrypt", new Type[] { typeof(byte[]), typeof(RSAEncryptionPadding) });