reset method
Reset the cipher to its original state.
Implementation
@override
void reset() {
arrayCopy(_x0, 0, _xPrev, 0, blockSize);
arrayCopy(_y0, 0, _yPrev, 0, blockSize);
_underlyingCipher.reset();
}
Reset the cipher to its original state.
@override
void reset() {
arrayCopy(_x0, 0, _xPrev, 0, blockSize);
arrayCopy(_y0, 0, _yPrev, 0, blockSize);
_underlyingCipher.reset();
}