2 writes to Key
System.Core (2)
System\Security\Cryptography\RsaCng.cs (2)
64Key = CngKey.Open(key.Handle, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None); 393Key = newKey;
5 references to Key
System.Core (5)
System\Security\Cryptography\RsaCng.cs (3)
149get { return Key.Handle; } 226byte[] rsaBlob = Key.Export(includePrivateParameters ? s_rsaFullPrivateBlob : s_rsaPublicBlob); 479CngKey key = Key;
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (2)
124newCert = CertificateExtensionsCommon.CopyWithPersistedCngKey(certificate, rsaCng.Key); 151newCert = CertificateExtensionsCommon.CopyWithEphemeralCngKey(certificate, rsaCng.Key);