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)
276return CngKey.Open(_keyName!, _provider!, _optionOptions); 287private readonly bool KeyInPlainText => _keyName is null && _key is null;