12345678910111213141516171819202122232425262728293031323334 |
- namespace SharpCompress.Crypto
- {
-
- public interface IBlockCipher
- {
-
- string AlgorithmName { get; }
-
-
-
- void Init(bool forEncryption, ICipherParameters parameters);
-
- int GetBlockSize();
-
- bool IsPartialBlockOkay { get; }
-
-
-
-
-
-
-
- int ProcessBlock(byte[] inBuf, int inOff, byte[] outBuf, int outOff);
-
-
-
- void Reset();
- }
- }
|