6 references to EphemeralKey
System.Core (6)
System\Security\Cryptography\CngKey.cs (2)
751
bool openingEphemeralKey = (keyHandleOpenOptions & CngKeyHandleOpenOptions.
EphemeralKey
) == CngKeyHandleOpenOptions.
EphemeralKey
;
System\Security\Cryptography\ECDiffieHellmanCng.cs (1)
97
Key = CngKey.Open(importHandle, key.IsEphemeral ? CngKeyHandleOpenOptions.
EphemeralKey
: CngKeyHandleOpenOptions.None);
System\Security\Cryptography\ECDsaCng.cs (1)
78
Key = CngKey.Open(keyHandle, key.IsEphemeral ? CngKeyHandleOpenOptions.
EphemeralKey
: CngKeyHandleOpenOptions.None);
System\Security\Cryptography\RsaCng.cs (1)
64
Key = CngKey.Open(key.Handle, key.IsEphemeral ? CngKeyHandleOpenOptions.
EphemeralKey
: CngKeyHandleOpenOptions.None);
System\Security\Cryptography\X509Certificates\X509Native.cs (1)
67
openOptions = CngKeyHandleOpenOptions.
EphemeralKey
;