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)
57
public byte[]? GetValue() =>
_value
.CloneByteArray();
81
if (
_value
== null)
82
return other.
_value
== null;
84
if (other.
_value
== null)
87
return
_value
.AsSpan().SequenceEqual(other.
_value
);
98
if (
_value
!= null)
100
for (int i = 0; i <
_value
.Length; i++)
104
int shifted = (int)(
_value
[i] << ((i % 4) * 8));
127
return
_value
;