3 overrides of KeySize
mscorlib (1)
system\security\cryptography\rc2.cs (1)
62public override int KeySize {
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
123public override int KeySize {
System\Security\Cryptography\AesManaged.cs (1)
57public override int KeySize {
4 writes to KeySize
mscorlib (1)
system\security\cryptography\rc2.cs (1)
66base.KeySize = value;
System.Core (3)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
129base.KeySize = value;
System\Security\Cryptography\AesManaged.cs (2)
37m_impl.KeySize = KeySize; 59set { m_impl.KeySize = value; }
7 references to KeySize
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
124get { return base.KeySize; }
System\Security\Cryptography\AesManaged.cs (1)
58get { return m_impl.KeySize; }
System.IdentityModel (1)
System\IdentityModel\RsaEncryptionCookieTransform.cs (1)
226byte[] decryptionKey = new byte[symmetricAlgorithm.KeySize / 8];
System.Security (1)
system\security\cryptography\xml\encryptedxml.cs (1)
593switch (symKey.KeySize) {
System.Web (3)
Configuration\MachineKeySection.cs (3)
924_IVLengthValidation = RoundupNumBitsToNumBytes(s_oSymAlgoValidation.KeySize); 927_IVLengthDecryption = RoundupNumBitsToNumBytes(s_oSymAlgoDecryption.KeySize); 1196_AutoGenDecryptionKeySize = RoundupNumBitsToNumBytes(s_oSymAlgoDecryption.KeySize);