SimpleChecksumUpdater
Mutable checksum updater for SimpleChecksum, with a provided checksum
For example:
val checksum = SimpleChecksumUpdater(CRC32)
checksum.reset()
checksum.update(byteArrayOf(1, 2, 3, 4), 1, 2)
checksum.currentContent copied to clipboard
Properties
Functions
Link copied to clipboard
Updates the checksum with the read function. And returns the updated checksum.