2 writes to _rsaKey
mscorlib (2)
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (2)
27
_rsaKey
= (RSA) key;
67
_rsaKey
= (RSA) key;
4 references to _rsaKey
mscorlib (4)
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (4)
73
if (
_rsaKey
== null)
77
return
_rsaKey
.Encrypt(rgbData, RSAEncryptionPadding.OaepSHA1);
79
return Utils.RsaOaepEncrypt(
_rsaKey
, SHA1.Create(), new PKCS1MaskGenerationMethod(), RandomNumberGenerator.Create(), rgbData);
90
_rsaOverridesEncrypt = Utils.DoesRsaKeyOverride(
_rsaKey
, "Encrypt", new Type[] { typeof(byte[]), typeof(RSAEncryptionPadding) });