reset method
Reset the cipher to its original state.
Implementation
@override
void reset() {
if (_workingKey != null) {
_setKey(_workingKey!, _workingIV);
}
}
Reset the cipher to its original state.
@override
void reset() {
if (_workingKey != null) {
_setKey(_workingKey!, _workingIV);
}
}