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;
12 references to IsEphemeral
System.Security.Cryptography (12)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\MLDsaCng.Windows.cs (2)
53duplicateKey = CngHelpers.Duplicate(key.HandleNoDuplicate, key.IsEphemeral); 102return CngHelpers.Duplicate(_key.HandleNoDuplicate, _key.IsEphemeral);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\MLKemCng.Windows.cs (2)
45duplicateKey = CngHelpers.Duplicate(key.HandleNoDuplicate, key.IsEphemeral); 94return CngHelpers.Duplicate(_key.HandleNoDuplicate, _key.IsEphemeral);
System\Security\Cryptography\AesCng.Windows.cs (1)
71CngKey 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);
System\Security\Cryptography\X25519DiffieHellmanCng.Windows.cs (2)
31_key = CngHelpers.Duplicate(key.HandleNoDuplicate, key.IsEphemeral); 37return CngHelpers.Duplicate(_key.HandleNoDuplicate, _key.IsEphemeral);