Package org.apache.hadoop.util
Class PureJavaCrc32C
java.lang.Object
org.apache.hadoop.util.PureJavaCrc32C
- All Implemented Interfaces:
Checksum
A pure-java implementation of the CRC32 checksum that uses
the CRC32-C polynomial, the same polynomial used by iSCSI
and implemented on many Intel chipsets supporting SSE4.2.
-
Constructor Details
-
PureJavaCrc32C
public PureJavaCrc32C()Create a new PureJavaCrc32 object.
-
-
Method Details
-
getValue
public long getValue() -
reset
public void reset() -
update
public void update(byte[] b, int off, int len) -
mod
public static int mod(long x) Compute x mod p, where p is the CRC32C polynomial.- Parameters:
x- the input value- Returns:
- x mod p
-
update
public final void update(int b)
-