BlockCtrRandom constructor

BlockCtrRandom(
  1. BlockCipher cipher
)

Implementation

BlockCtrRandom(this.cipher) {
  _input = Uint8List(cipher.blockSize);
  _output = Uint8List(cipher.blockSize);
  _used = _output.length;
}