3 overrides of KeySize
mscorlib (1)
system\security\cryptography\rc2.cs (1)
62
public override int
KeySize
{
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
123
public override int
KeySize
{
System\Security\Cryptography\AesManaged.cs (1)
57
public override int
KeySize
{
4 writes to KeySize
mscorlib (1)
system\security\cryptography\rc2.cs (1)
66
base.
KeySize
= value;
System.Core (3)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
129
base.
KeySize
= value;
System\Security\Cryptography\AesManaged.cs (2)
37
m_impl.
KeySize
= KeySize;
59
set { m_impl.
KeySize
= value; }
7 references to KeySize
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
124
get { return base.
KeySize
; }
System\Security\Cryptography\AesManaged.cs (1)
58
get { return m_impl.
KeySize
; }
System.IdentityModel (1)
System\IdentityModel\RsaEncryptionCookieTransform.cs (1)
226
byte[] decryptionKey = new byte[symmetricAlgorithm.
KeySize
/ 8];
System.Security (1)
system\security\cryptography\xml\encryptedxml.cs (1)
593
switch (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
);