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