src/ICSharpCode.SharpZipLib/Encryption/PkzipClassic.cs [178:237]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - return inputCount; } /// /// Gets a value indicating whether the current transform can be reused. /// public bool CanReuseTransform { get { return true; } } /// /// Gets the size of the input data blocks in bytes. /// public int InputBlockSize { get { return 1; } } /// /// Gets the size of the output data blocks in bytes. /// public int OutputBlockSize { get { return 1; } } /// /// Gets a value indicating whether multiple blocks can be transformed. /// public bool CanTransformMultipleBlocks { get { return true; } } #endregion ICryptoTransform Members #region IDisposable Members /// /// Cleanup internal state. /// public void Dispose() { Reset(); } #endregion IDisposable Members - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/ICSharpCode.SharpZipLib/Encryption/PkzipClassic.cs [288:347]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - return inputCount; } /// /// Gets a value indicating whether the current transform can be reused. /// public bool CanReuseTransform { get { return true; } } /// /// Gets the size of the input data blocks in bytes. /// public int InputBlockSize { get { return 1; } } /// /// Gets the size of the output data blocks in bytes. /// public int OutputBlockSize { get { return 1; } } /// /// Gets a value indicating whether multiple blocks can be transformed. /// public bool CanTransformMultipleBlocks { get { return true; } } #endregion ICryptoTransform Members #region IDisposable Members /// /// Cleanup internal state. /// public void Dispose() { Reset(); } #endregion IDisposable Members - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -