reset method

  1. @override
void reset()

Reset the cipher to its original state.

Implementation

@override
void reset() {
  underlyingCipher.reset();
  associatedText.clear();
  data.clear();
}