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