public class Adler32 extends Object implements Checksum
Constructor and Description |
---|
Adler32() |
Modifier and Type | Method and Description |
---|---|
long |
getValue() |
void |
reset() |
void |
update(byte[] buf) |
void |
update(byte[] buf,
int off,
int len)
this method is not that hard to do in java code, but it is very likely that large byte arrays are passed
to this method --> so it can be justified to get the job done in native code ...
|
void |
update(int bval) |