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