4 writes to IsEphemeral
System.Security.Cryptography (4)
System\Security\Cryptography\CngKey.Create.cs (1)
66key.IsEphemeral = true;
System\Security\Cryptography\CngKey.Import.cs (2)
99key.IsEphemeral = true; 156key.IsEphemeral = format != CngKeyBlobFormat.OpaqueTransportBlob;
System\Security\Cryptography\CngKey.OpenHandle.cs (1)
62key.IsEphemeral = true;
7 references to IsEphemeral
System.Security.Cryptography (7)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CngHelpers.cs (1)
351return Duplicate(key.HandleNoDuplicate, key.IsEphemeral);
System\Security\Cryptography\AesCng.Windows.cs (1)
77CngKey duplicate = CngHelpers.Duplicate(key.HandleNoDuplicate, key.IsEphemeral);
System\Security\Cryptography\CngAlgorithmCore.cs (1)
29return CngKey.Open(key.HandleNoDuplicate, key.IsEphemeral ? CngKeyHandleOpenOptions.EphemeralKey : CngKeyHandleOpenOptions.None);
System\Security\Cryptography\CngKey.OpenHandle.cs (1)
58if (!key.IsEphemeral)
System\Security\Cryptography\CngKey.StandardProperties.cs (2)
174if (IsEphemeral) 389if (IsEphemeral)
System\Security\Cryptography\CngSymmetricAlgorithmCore.cs (1)
283return CngHelpers.Duplicate(_key.HandleNoDuplicate, _key.IsEphemeral);