public class

CRC32

extends Object
implements Checksum
java.lang.Object
   ↳ java.util.zip.CRC32

Class Overview

The CRC32 class is used to compute a CRC32 checksum from data provided as input value.

Summary

Public Constructors
CRC32()
Public Methods
long getValue()
Returns the CRC32 checksum for all input received.
void reset()
Resets the CRC32 checksum to it initial state.
void update(byte[] buf, int off, int nbytes)
Updates this checksum with n bytes of data obtained from buffer buf, starting at offset off.
void update(int val)
Updates this checksum with the byte value provided as integer.
void update(byte[] buf)
Updates this checksum with the bytes contained in buffer buf.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.util.zip.Checksum

Public Constructors

public CRC32 ()

Public Methods

public long getValue ()

Returns the CRC32 checksum for all input received.

Returns
  • The checksum for this instance.

public void reset ()

Resets the CRC32 checksum to it initial state.

public void update (byte[] buf, int off, int nbytes)

Updates this checksum with n bytes of data obtained from buffer buf, starting at offset off.

Parameters
buf the buffer to update the checksum.
off the offset in buf to obtain data from.
nbytes the number of bytes to read from buf.

public void update (int val)

Updates this checksum with the byte value provided as integer.

Parameters
val represents the byte to update the checksum.

public void update (byte[] buf)

Updates this checksum with the bytes contained in buffer buf.

Parameters
buf the buffer holding the data to update the checksum with.