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