CRC32 

Introduction

The java.util.zip.CRC32 class is a class that can be used to compute the CRC-32 of a data stream.

Class Declaration

Following is the declaration for java.util.zip.CRC32 class −

publicclassCRC32extendsObjectimplementsChecksum

Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career.

Constructors

Sr.No.Constructor & Description
1CRC32()Creates a new CRC32 object.

Class Methods

Sr.No.Method & Description
1long getValue()Returns the CRC-32 value.
2void reset()Resets the CRC-32 to initial value.
3void update(byte[] b)Updates the CRC-32 checksum with the specified array of bytes.
4void update(byte[] b, int off, int len)Updates the CRC-32 checksum with the specified array of bytes.
5void update(int b)Updates the CRC-32 checksum with the specified byte (the low eight bits of the argument b).

Methods Inherited

This class inherits methods from the following classes −

  • java.lang.Object

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *