reset method
Reset the cipher to its original state.
Implementation
@override
void reset() {
  _rounds = 0;
  _c0 = _c1 = _c2 = _c3 = 0;
  _forEncryption = false;
  _workingKey = null;
}Reset the cipher to its original state.
@override
void reset() {
  _rounds = 0;
  _c0 = _c1 = _c2 = _c3 = 0;
  _forEncryption = false;
  _workingKey = null;
}