6 writes to KeyValue
mscorlib (6)
system\security\cryptography\hmac.cs (2)
81
KeyValue
= m_hash1.ComputeHash(key);
84
KeyValue
= (byte[]) key.Clone();
system\security\cryptography\keyedhashalgorithm.cs (2)
26
KeyValue
= null;
40
KeyValue
= (byte[]) value.Clone();
system\security\cryptography\mactripledes.cs (2)
35
KeyValue
= new byte[24];
68
KeyValue
= (byte[]) rgbKey.Clone();
11 references to KeyValue
mscorlib (11)
system\security\cryptography\hmac.cs (4)
67
for (i=0; i <
KeyValue
.Length; i++) {
68
m_inner[i] ^=
KeyValue
[i];
69
m_outer[i] ^=
KeyValue
[i];
94
get { return (byte[])
KeyValue
.Clone(); }
system\security\cryptography\hmacsha384.cs (1)
47
InitializeKey(
KeyValue
);
system\security\cryptography\hmacsha512.cs (1)
57
InitializeKey(
KeyValue
);
system\security\cryptography\keyedhashalgorithm.cs (4)
24
if (
KeyValue
!= null)
25
Array.Clear(
KeyValue
, 0,
KeyValue
.Length);
36
get { return (byte[])
KeyValue
.Clone(); }
system\security\cryptography\mactripledes.cs (1)
36
Utils.StaticRandomNumberGenerator.GetBytes(
KeyValue
);