reset method
Reset the cipher to its original state.
Implementation
@override
void reset() {
_cbcV!.setAll(0, _iv);
_cbcNextV!.fillRange(0, _cbcNextV!.length, 0);
_underlyingCipher.reset();
}
Reset the cipher to its original state.
@override
void reset() {
_cbcV!.setAll(0, _iv);
_cbcNextV!.fillRange(0, _cbcNextV!.length, 0);
_underlyingCipher.reset();
}