10 writes to KeyValue
mscorlib (9)
system\security\cryptography\des.cs (1)
65KeyValue = (byte[]) value.Clone();
system\security\cryptography\descryptoserviceprovider.cs (1)
53KeyValue = new byte[8];
system\security\cryptography\rc2cryptoserviceprovider.cs (1)
90KeyValue = new byte[KeySizeValue/8];
system\security\cryptography\rijndaelmanaged.cs (1)
60KeyValue = Utils.GenerateRandom(KeySizeValue / 8);
system\security\cryptography\symmetricalgorithm.cs (3)
64KeyValue = null; 145KeyValue = (byte[]) value.Clone(); 165KeyValue = null;
system\security\cryptography\tripledes.cs (1)
61KeyValue = (byte[]) value.Clone();
system\security\cryptography\tripledescryptoserviceprovider.cs (1)
47KeyValue = new byte[KeySizeValue/8];
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
44this.KeyValue = new byte[this.KeySizeValue / 8];
21 references to KeyValue
mscorlib (20)
system\security\cryptography\des.cs (4)
45if (KeyValue == null) { 49} while (IsWeakKey(KeyValue) || IsSemiWeakKey(KeyValue)); 51return (byte[]) KeyValue.Clone();
system\security\cryptography\descryptoserviceprovider.cs (4)
54Utils.StaticRandomNumberGenerator.GetBytes(KeyValue); 56while (DES.IsWeakKey(KeyValue) || DES.IsSemiWeakKey(KeyValue)) { 57Utils.StaticRandomNumberGenerator.GetBytes(KeyValue);
system\security\cryptography\rc2cryptoserviceprovider.cs (1)
91Utils.StaticRandomNumberGenerator.GetBytes(KeyValue);
system\security\cryptography\symmetricalgorithm.cs (5)
62if (KeyValue != null) { 63Array.Clear(KeyValue, 0, KeyValue.Length); 135if (KeyValue == null) GenerateKey(); 136return (byte[]) KeyValue.Clone();
system\security\cryptography\tripledes.cs (3)
44if (KeyValue == null) { 48} while (IsWeakKey(KeyValue)); 50return (byte[]) KeyValue.Clone();
system\security\cryptography\tripledescryptoserviceprovider.cs (3)
48Utils.StaticRandomNumberGenerator.GetBytes(KeyValue); 50while (TripleDES.IsWeakKey(KeyValue)) { 51Utils.StaticRandomNumberGenerator.GetBytes(KeyValue);
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
45CryptoHelper.RandomNumberGenerator.GetBytes(this.KeyValue);