2 writes to m_value
System.Core (2)
System\Security\Cryptography\CngProperty.cs (2)
33
m_value
= value.Clone() as byte[];
36
m_value
= null;
14 references to m_value
System.Core (14)
System\Security\Cryptography\CngProperty.cs (14)
62
get { return
m_value
; }
72
if (
m_value
!= null) {
73
value =
m_value
.Clone() as byte[];
108
if (
m_value
== null) {
109
return other.
m_value
== null;
111
if (other.
m_value
== null) {
115
if (
m_value
.Length != other.
m_value
.Length) {
119
for (int i = 0; i <
m_value
.Length; i++) {
120
if (
m_value
[i] != other.
m_value
[i]) {
134
if (
m_value
!= null) {
135
for (int i = 0; i <
m_value
.Length; i++) {
138
int shifted = (int)(
m_value
[i] << ((i % 4) * 8));