Implemented interface member:
property
InputBlockSize
System.Security.Cryptography.ICryptoTransform.InputBlockSize
15 references to InputBlockSize
System.Core (15)
System\Security\Cryptography\CapiSymmetricAlgorithm.cs (15)
110Contract.Requires(inputCount > 0 && inputCount % InputBlockSize == 0); 138m_depadBuffer = new byte[InputBlockSize]; 149Debug.Assert(inputCount % InputBlockSize == 0, "Did not remove whole blocks for depadding"); 180if (padBytes <= 0 || padBytes > InputBlockSize) { 197if (padBytes <= 0 || padBytes > InputBlockSize) { 208if (padBytes <= 0 || padBytes > InputBlockSize) { 246Contract.Requires(count > 0 && count % InputBlockSize == 0); 282Contract.Ensures(Contract.Result<byte[]>() != null && Contract.Result<byte[]>().Length % InputBlockSize == 0); 285int padBytes = InputBlockSize - (count % InputBlockSize); 312if (count % InputBlockSize != 0) { 338if (padBytes == InputBlockSize) { 396Contract.Requires(count > 0 && count % InputBlockSize == 0); 486if (inputCount % InputBlockSize != 0) { 541if (inputCount % InputBlockSize != 0) {