reset method
Reset the MAC to its original state.
Implementation
@override
void reset() {
// reset the underlying digest.
_digest.reset();
// reinitialize the digest.
_digest.update(_inputPad, 0, _inputPad.length);
}
Reset the MAC to its original state.
@override
void reset() {
// reset the underlying digest.
_digest.reset();
// reinitialize the digest.
_digest.update(_inputPad, 0, _inputPad.length);
}