e-CryptIt Engine - Checksums Xojo Plugin

CRC32.Final Method

Gets the final checksum from the CRC.

Final(
   crc as UInt32) as UInt32

Parameters

crc
The crc value from last call to update.

Returns

UInt32

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

CRC32 Class