Class PngCrc
- java.lang.Object
-
- org.apache.commons.imaging.formats.png.PngCrc
-
final class PngCrc extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private long[]crcTableprivate booleancrcTableComputed
-
Constructor Summary
Constructors Constructor Description PngCrc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcontinuePartialCrc(long oldCrc, byte[] buf, int len)intcrc(byte[] buf, int len)longfinishPartialCrc(long oldCrc)private voidmakeCrcTable()longstartPartialCrc(byte[] buf, int len)private longupdateCrc(long crc, byte[] buf)
-
-
-
Method Detail
-
continuePartialCrc
public long continuePartialCrc(long oldCrc, byte[] buf, int len)
-
crc
public int crc(byte[] buf, int len)
-
finishPartialCrc
public long finishPartialCrc(long oldCrc)
-
makeCrcTable
private void makeCrcTable()
-
startPartialCrc
public long startPartialCrc(byte[] buf, int len)
-
updateCrc
private long updateCrc(long crc, byte[] buf)
-
-