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