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