clean method

  1. @override
BlockCipher clean()
override

Resets all internal state for this cipher.

After calling this method, the instance is no longer valid for further encryption or decryption operations.

Implementation

@override
BlockCipher clean() {
  _tmpBlock = [];
  _prevBlock = [];
  return this;
}