6 writes to BlockSizeValue
System.Security.Cryptography (6)
System\Security\Cryptography\Aes.cs (1)
17
BlockSizeValue
= 128;
System\Security\Cryptography\DES.cs (1)
20
BlockSizeValue
= 64;
System\Security\Cryptography\RC2.cs (1)
20
BlockSizeValue
= 64;
System\Security\Cryptography\Rijndael.cs (1)
33
BlockSizeValue
= 128;
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
57
BlockSizeValue
= value;
System\Security\Cryptography\TripleDES.cs (1)
17
BlockSizeValue
= 64;
9 references to BlockSizeValue
System.Security.Cryptography (9)
System\Security\Cryptography\DES.cs (1)
21
FeedbackSizeValue =
BlockSizeValue
;
System\Security\Cryptography\RC2.cs (1)
21
FeedbackSizeValue =
BlockSizeValue
;
System\Security\Cryptography\Rijndael.cs (1)
34
FeedbackSizeValue =
BlockSizeValue
;
System\Security\Cryptography\RijndaelImplementation.cs (1)
35
Debug.Assert(
BlockSizeValue
== 128);
System\Security\Cryptography\RijndaelManaged.cs (1)
31
Debug.Assert(
BlockSizeValue
== 128);
System\Security\Cryptography\SymmetricAlgorithm.cs (3)
35
if (value <= 0 || value >
BlockSizeValue
|| (value % 8) != 0)
45
return
BlockSizeValue
;
54
if (
BlockSizeValue
== value && !validatedByZeroSkipSizeKeySizes) // The !validatedByZeroSkipSizeKeySizes check preserves a very obscure back-compat behavior.
System\Security\Cryptography\TripleDES.cs (1)
18
FeedbackSizeValue =
BlockSizeValue
;