IGEBlockCipher constructor

IGEBlockCipher(
  1. BlockCipher _underlyingCipher
)

Instantiates an IGEBlockCipher, using _underlyingCipher as the basis for chaining encryption/decryption.

Implementation

IGEBlockCipher(this._underlyingCipher) {
  _x0 = Uint8List(blockSize);
  _y0 = Uint8List(blockSize);
  _xPrev = Uint8List(blockSize);
  _yPrev = Uint8List(blockSize);
}