init commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace Org.BouncyCastle.Crypto;
|
||||
|
||||
public interface IBlockCipher
|
||||
{
|
||||
string AlgorithmName { get; }
|
||||
|
||||
bool IsPartialBlockOkay { get; }
|
||||
|
||||
void Init(bool forEncryption, ICipherParameters parameters);
|
||||
|
||||
int GetBlockSize();
|
||||
|
||||
int ProcessBlock(byte[] inBuf, int inOff, byte[] outBuf, int outOff);
|
||||
|
||||
void Reset();
|
||||
}
|
||||
Reference in New Issue
Block a user