12 writes to KeySizeValue
mscorlib (9)
system\security\cryptography\aes.cs (1)
32
KeySizeValue
= 256;
system\security\cryptography\des.cs (2)
32
KeySizeValue
= 64;
66
KeySizeValue
= value.Length * 8;
system\security\cryptography\rc2.cs (1)
30
KeySizeValue
= 128;
system\security\cryptography\rijndael.cs (1)
32
KeySizeValue
= 256;
system\security\cryptography\symmetricalgorithm.cs (2)
146
KeySizeValue
= value.Length * 8;
164
KeySizeValue
= value;
system\security\cryptography\tripledes.cs (2)
31
KeySizeValue
= 3*64;
62
KeySizeValue
= value.Length * 8;
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (2)
62
KeySizeValue
= defaultKeySize;
116
KeySizeValue
= keyValue.Length * 8;
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
63
KeySizeValue
= m_parameters.keySize;
17 references to KeySizeValue
mscorlib (12)
system\security\cryptography\rc2.cs (3)
43
if (EffectiveKeySizeValue == 0) return
KeySizeValue
;
47
if (value >
KeySizeValue
) {
63
get { return
KeySizeValue
; }
system\security\cryptography\rc2cryptoserviceprovider.cs (4)
59
return
KeySizeValue
;
62
if (value !=
KeySizeValue
)
90
KeyValue = new byte[
KeySizeValue
/8];
120
rgbKey = new byte[
KeySizeValue
/8];
system\security\cryptography\rijndaelmanaged.cs (2)
60
KeyValue = Utils.GenerateRandom(
KeySizeValue
/ 8);
74
rgbKey = Utils.GenerateRandom(
KeySizeValue
/ 8);
system\security\cryptography\symmetricalgorithm.cs (1)
159
get { return
KeySizeValue
; }
system\security\cryptography\tripledescryptoserviceprovider.cs (2)
47
KeyValue = new byte[
KeySizeValue
/8];
82
rgbKey = new byte[
KeySizeValue
/8];
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (2)
78
Contract.Result<byte[]>().Length ==
KeySizeValue
/ 8);
377
GetAlgorithmId(
KeySizeValue
),
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
44
this.KeyValue = new byte[this.
KeySizeValue
/ 8];
System.IdentityModel.Selectors (2)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (2)
67
LegalKeySizesValue = new KeySizes[] { new KeySizes(
KeySizeValue
,
KeySizeValue
, 0) };