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)
50
public byte[]? GetValue() =>
_value
.CloneByteArray();
74
if (
_value
== null)
75
return other.
_value
== null;
77
if (other.
_value
== null)
80
return
_value
.AsSpan().SequenceEqual(other.
_value
);
91
if (
_value
!= null)
93
for (int i = 0; i <
_value
.Length; i++)
97
int shifted = (int)(
_value
[i] << ((i % 4) * 8));
120
return
_value
;