Class CRC32C
java.lang.Object
software.amazon.awssdk.crt.checksums.CRC32C
CRT implementation of the Java Checksum interface for making Crc32c checksum calculations
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
CRC32C
public CRC32C()Default constructor
-
-
Method Details
-
clone
-
getValue
public long getValue()Returns the current checksum value. -
reset
public void reset()Resets the checksum to its initial value. -
update
public void update(byte[] b, int off, int len) Updates the current checksum with the specified array of bytes. -
update
public void update(byte[] b) -
update
public void update(int b)
-