Class Adler32
- java.lang.Object
-
- totalcross.util.zip.Checksum
-
- totalcross.util.zip.Adler32
-
public class Adler32 extends Checksum
Computes an Adler-32 checksum for a stream of data. An Adler-32 checksum is not as reliable as a CRC-32 checksum, but a lot faster to compute.The specification for Adler-32 may be found in RFC 1950. (ZLIB Compressed Data Format Specification version 3.3).
From that document:
"ADLER32 (Adler-32 checksum) This contains a checksum value of the uncompressed data (excluding any dictionary data) computed according to Adler-32 algorithm. This algorithm is a 32-bit extension and improvement of the Fletcher algorithm, used in the ITU-T X.224 / ISO 8073 standard.
Adler-32 is composed of two sums accumulated per byte:
s1is the sum of all bytes,s2is the sum of all s1 values. Both sums are done modulo65521.s1is initialized to1,s2to zero. The Adler-32 checksum is stored ass2*65536 + s1in most- significant-byte first (network) order.""8.2. The Adler-32 algorithm
The Adler-32 algorithm is much faster than the CRC32 algorithm yet still provides an extremely low probability of undetected errors.
The modulo on
unsigned longaccumulators can be delayed for5552bytes, so the modulo operation time is negligible. If the bytes area,b,c, the second sum is3a + 2b + c + 3, and so is position and order sensitive, unlike the first sum, which is just a checksum. That65521is prime is important to avoid a possible large class of two-byte errors that leave the check unchanged. (The Fletcher checksum uses255, which is not prime and which also makes the Fletcher check insensitive to single byte changes0 <-> 255.)The sum
s1is initialized to1instead of zero to make the length of the sequence part ofs2, so that the length does not have to be checked separately. (Any sequence of zeroes has a Fletcher checksum of zero.)" Changes for TotalCross:
Extends the abstract classChecksum(which was originally an interface).- Since:
- JDK 1.1
-
-
Constructor Summary
Constructors Constructor Description Adler32()Creates a new instance of theAdler32class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetValue()Returns the Adler-32 data checksum computed so far.voidreset()Resets the Adler-32 checksum to the initial value.voidupdate(byte[] buffer)Updates the checksum with the bytes taken from the array.voidupdate(byte[] buf, int off, int len)Updates the checksum with the bytes taken from the array.voidupdate(int bval)Updates the checksum with the byte passed as a parameter.
-
-
-
Method Detail
-
reset
public void reset()
Resets the Adler-32 checksum to the initial value.
-
update
public void update(int bval)
Updates the checksum with the byte passed as a parameter.- Parameters:
bval- The data value to add. The higher byte of the integer is ignored.
-
update
public void update(byte[] buffer)
Updates the checksum with the bytes taken from the array.- Parameters:
buffer- An array of bytes.
-
update
public void update(byte[] buf, int off, int len)Updates the checksum with the bytes taken from the array.- Parameters:
buf- An array of bytes.off- The start of the data used for this update.len- The number of bytes to use for this update.
-
getValue
public long getValue()
Returns the Adler-32 data checksum computed so far.- Returns:
- A
longwith the data checksum computed so far.
-
-