reset method
Reset the cipher to its original state.
Implementation
@override
void reset() {
var bs = underlyingCipher.blockSize;
_blocksRemaining = (2 ^ 36 - 64) ~/ bs;
super.reset();
}
Reset the cipher to its original state.
@override
void reset() {
var bs = underlyingCipher.blockSize;
_blocksRemaining = (2 ^ 36 - 64) ~/ bs;
super.reset();
}