Class CrcCloneOnMarkChecksum
java.lang.Object
software.amazon.awssdk.checksums.internal.BaseCrcChecksum
software.amazon.awssdk.checksums.internal.CrcCloneOnMarkChecksum
- All Implemented Interfaces:
- Checksum,- SdkChecksum
Class that provides functionality for combining CRC checksums with mark and reset capabilities.
 
This class is intended for use with checksums that do not provide a cloneable method. It uses combine methods to handle mark and reset operations efficiently.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbyte[]Returns the computed checksum in a byte array rather than the long provided byChecksum.getValue().Methods inherited from class software.amazon.awssdk.checksums.internal.BaseCrcChecksumgetChecksum, getValue, mark, reset, update, updateMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.awssdk.checksums.SdkChecksumupdate, update
- 
Constructor Details- 
CrcCloneOnMarkChecksum
 
- 
- 
Method Details- 
getChecksumBytespublic byte[] getChecksumBytes()Description copied from interface:SdkChecksumReturns the computed checksum in a byte array rather than the long provided byChecksum.getValue().- Returns:
- byte[] containing the checksum
 
 
-