14 references to CngKeyHandleOpenOptions
System.Core (14)
System\Security\Cryptography\CngKey.cs (3)
724public static CngKey Open(SafeNCryptKeyHandle keyHandle, CngKeyHandleOpenOptions keyHandleOpenOptions) { 751bool openingEphemeralKey = (keyHandleOpenOptions & CngKeyHandleOpenOptions.EphemeralKey) == CngKeyHandleOpenOptions.EphemeralKey;
System\Security\Cryptography\ECDiffieHellmanCng.cs (2)
97Key = CngKey.Open(importHandle, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
System\Security\Cryptography\ECDsaCng.cs (2)
78Key = CngKey.Open(keyHandle, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
System\Security\Cryptography\RsaCng.cs (2)
64Key = CngKey.Open(key.Handle, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
System\Security\Cryptography\X509Certificates\ECDsaCertificateExtensions.cs (1)
28CngKeyHandleOpenOptions openOptions;
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (1)
71CngKeyHandleOpenOptions openOptions;
System\Security\Cryptography\X509Certificates\X509Native.cs (3)
48out CngKeyHandleOpenOptions openOptions) 67openOptions = CngKeyHandleOpenOptions.EphemeralKey; 72openOptions = CngKeyHandleOpenOptions.None;