reset method

  1. @override
void reset()
override

Reset the cipher to its original state.

Implementation

@override
void reset() {
  _state[12] = 0;
  if (_workingKey != null) {
    _setKey(_workingKey!, _workingIV);
  }
}