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