public static interface Checksum.Hasher
| Modifier and Type | Method and Description |
|---|---|
void |
reset()
Resets the hasher for further use.
|
byte[] |
sum()
Completes the hash computation by performing final operations such as padding.
|
void |
update(byte[] b,
int off,
int len)
Updates len bytes from the specified byte array starting at offset off to this hasher.
|