6 references to EphemeralKey
System.Security.Cryptography (5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CngHelpers.cs (1)
344return CngKey.Open(keyHandle, isEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\X509Certificates\CertificateHelpers.Windows.cs (1)
147handleOptions = CngKeyHandleOpenOptions.EphemeralKey;
System\Security\Cryptography\CngAlgorithmCore.cs (1)
29return CngKey.Open(key.HandleNoDuplicate, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
System\Security\Cryptography\CngKey.OpenHandle.cs (2)
57bool openingEphemeralKey = (keyHandleOpenOptions & CngKeyHandleOpenOptions.EphemeralKey) == CngKeyHandleOpenOptions.EphemeralKey;
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\Windows\PkcsPalWindows.cs (1)
142options |= CngKeyHandleOpenOptions.EphemeralKey;