Chunk Data
data class ChunkData(var chunkID: ByteArray? = null, var checksum: Int = 0, var offset: Long = 0, var compressedLength: Int = 0, var uncompressedLength: Int = 0)
Represents a single chunk within a file.
Parameters
chunk ID
Gets or sets the SHA-1 hash chunk id.
checksum
Gets or sets the expected Adler32 checksum of this chunk.
offset
Gets or sets the chunk offset.
compressed Length
Gets or sets the compressed length of this chunk.
uncompressed Length
Gets or sets the decompressed length of this chunk.