2 writes to _value
System.Security.Cryptography (2)
System\Security\Cryptography\CngProperty.cs (2)
27_value = value.CloneByteArray(); 38_value = value.ToArray();
10 references to _value
System.Security.Cryptography (10)
System\Security\Cryptography\CngProperty.cs (10)
50public byte[]? GetValue() => _value.CloneByteArray(); 74if (_value == null) 75return other._value == null; 77if (other._value == null) 80return _value.AsSpan().SequenceEqual(other._value); 91if (_value != null) 93for (int i = 0; i < _value.Length; i++) 97int shifted = (int)(_value[i] << ((i % 4) * 8)); 120return _value;