2 writes to _value
System.Security.Cryptography (2)
System\Security\Cryptography\CngProperty.cs (2)
27_value = value.CloneByteArray(); 45_value = value.ToArray();
10 references to _value
System.Security.Cryptography (10)
System\Security\Cryptography\CngProperty.cs (10)
57public byte[]? GetValue() => _value.CloneByteArray(); 81if (_value == null) 82return other._value == null; 84if (other._value == null) 87return _value.AsSpan().SequenceEqual(other._value); 98if (_value != null) 100for (int i = 0; i < _value.Length; i++) 104int shifted = (int)(_value[i] << ((i % 4) * 8)); 127return _value;