4 writes to _keyName
System.Security.Cryptography (4)
System\Security\Cryptography\CngSymmetricAlgorithmCore.cs (4)
22
_keyName
= null; // Setting _keyName to null signifies that this object is based on a plaintext key, not a stored CNG key.
37
_keyName
= keyName;
95
_keyName
= null; // Setting _keyName and _key to null signifies that this object is now based on a plaintext key, not a stored CNG key.
106
_keyName
= null; // Setting _keyName and _key to null signifies that this object is now based on a plaintext key, not a stored CNG key.
2 references to _keyName
System.Security.Cryptography (2)
System\Security\Cryptography\CngSymmetricAlgorithmCore.cs (2)
276
return CngKey.Open(
_keyName
!, _provider!, _optionOptions);
287
private readonly bool KeyInPlainText =>
_keyName
is null && _key is null;