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)
61if (_rsaKey == null) 65if (_rsaKey is RSACryptoServiceProvider) { 69return ((RSACryptoServiceProvider)_rsaKey).SignHash(rgbHash, calgHash); 73return _rsaKey.SignHash(rgbHash, hashAlgorithmName, RSASignaturePadding.Pkcs1); 78byte[] pad = Utils.RsaPkcs1Padding(_rsaKey, CryptoConfig.EncodeOID(_strOID), rgbHash); 80return _rsaKey.DecryptValue(pad); 87_rsaOverridesSignHash = Utils.DoesRsaKeyOverride(_rsaKey, "SignHash", new Type[] { typeof(byte[]), typeof(HashAlgorithmName), typeof(RSASignaturePadding) });