e-CryptIt Engine - Checksums Xojo Plugin

CRC64.Final Method

Gets the final checksum from the CRC.

Final(
   crc as UInt64) as UInt64

Parameters

crc
The crc value from last call to update.

Returns

UInt64

Remarks

Since some CRC variations do final XOR or flipping then you need to call Final to get the final result.

If you need reliable intermediate results then you can call final more than once as long as you do not pass the value from the Final to a update method. If you just continue with last value from Update then calling final more than once on same stream is all right.

See Also

CRC64 Class