2 writes to _rsaKey
mscorlib (2)
system\security\cryptography\rsapkcs1keyexchangeformatter.cs (2)
29
_rsaKey
= (RSA) key;
53
_rsaKey
= (RSA) key;
5 references to _rsaKey
mscorlib (5)
system\security\cryptography\rsapkcs1keyexchangeformatter.cs (5)
58
if (
_rsaKey
== null)
63
rgbKeyEx =
_rsaKey
.Encrypt(rgbData, RSAEncryptionPadding.Pkcs1);
66
int cb =
_rsaKey
.KeySize/8;
93
rgbKeyEx =
_rsaKey
.EncryptValue(rgbInput);
105
_rsaOverridesEncrypt = Utils.DoesRsaKeyOverride(
_rsaKey
, "Encrypt", new Type[] { typeof(byte[]), typeof(RSAEncryptionPadding) });