clean method
Clears internal state and buffers, resetting the MD4 hash object to its initial state.
Implementation
@override
void clean() {
BinaryOps.zero(_state);
BinaryOps.zero(_currentChunk);
_buffer.clear();
reset();
}
Clears internal state and buffers, resetting the MD4 hash object to its initial state.
@override
void clean() {
BinaryOps.zero(_state);
BinaryOps.zero(_currentChunk);
_buffer.clear();
reset();
}