Package org.apache.commons.codec.digest
Class PureJavaCrc32C
- java.lang.Object
-
- org.apache.commons.codec.digest.PureJavaCrc32C
-
- All Implemented Interfaces:
java.util.zip.Checksum
public class PureJavaCrc32C extends java.lang.Object implements java.util.zip.ChecksumA 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 SSE 4.2.Copied from Apache Hadoop 2.3.6: https://gitbox.apache.org/repos/asf?p=hadoop.git;a=blob_plain; f=hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/PureJavaCrc32C.java; hb=2120de588b92b9f22b1cc4188761d6a8c61aa778
This class is Not ThreadSafe
- Since:
- 1.11
-
-
Constructor Summary
Constructors Constructor Description PureJavaCrc32C()Create a new PureJavaCrc32 object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetValue()voidreset()voidupdate(byte[] b, int off, int len)voidupdate(int b)
-
-
-
Method Detail
-
getValue
public long getValue()
- Specified by:
getValuein interfacejava.util.zip.Checksum
-
reset
public void reset()
- Specified by:
resetin interfacejava.util.zip.Checksum
-
update
public void update(byte[] b, int off, int len)- Specified by:
updatein interfacejava.util.zip.Checksum
-
update
public final void update(int b)
- Specified by:
updatein interfacejava.util.zip.Checksum
-
-