1 write to BlockSize
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
36m_impl.BlockSize = BlockSize;
17 references to BlockSize
mscorlib (6)
system\security\cryptography\mactripledes.cs (6)
40HashSizeValue = des.BlockSize; 42m_bytesPerBlock = des.BlockSize/m_bitsPerByte; 66HashSizeValue = des.BlockSize; 70m_bytesPerBlock = des.BlockSize/m_bitsPerByte; 102_ts = new TailStream(des.BlockSize / 8); // 8 bytes 115_ts = new TailStream(des.BlockSize / 8); // 8 bytes
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
36m_impl.BlockSize = BlockSize;
System.IdentityModel (5)
System\IdentityModel\CryptoHelper.cs (3)
598return symmetricAlgorithm.BlockSize; 606return TripleDES.BlockSize; 610return Rijndael.BlockSize;
System\IdentityModel\EncryptedDataElement.cs (2)
70byte[] iv = new byte[algorithm.BlockSize / 8]; 107int ivSize = algorithm.BlockSize / 8;
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
131byte[] ivvalue = new byte[BlockSize / 8];
System.ServiceModel (2)
System\ServiceModel\Security\CryptoHelper.cs (2)
150int ivSize = algorithm.BlockSize / 8; 242int ivSize = algorithm.BlockSize / 8;
System.Web (2)
Security\Cryptography\NetFXCryptoService.cs (2)
61encryptionAlgorithm.IV = CryptoUtil.CreatePredictableIV(clearData, encryptionAlgorithm.BlockSize); 135int ivByteCount = decryptionAlgorithm.BlockSize / 8; // IV length is equal to the block size