Class CRC32C
- java.lang.Object
-
- software.amazon.awssdk.crt.checksums.CRC32C
-
-
Constructor Summary
Constructors Constructor Description CRC32C()
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
long
getValue()
Returns the current checksum value.void
reset()
Resets the checksum to its initial value.void
update(byte[] b)
void
update(byte[] b, int off, int len)
Updates the current checksum with the specified array of bytes.void
update(int b)
-
-
-
Method Detail
-
clone
public Object 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)
-
-