1#ifndef Cpl_Checksum_Api16_h_
2#define Cpl_Checksum_Api16_h_
45 virtual void reset(
void )
noexcept = 0;
49 virtual void accumulate(
const void* bytes,
unsigned numbytes=1 ) noexcept = 0;
58 virtual uint16_t
finalize(
void* destBuffer=0 ) noexcept = 0;
64 virtual
bool isOkay(
void ) noexcept = 0;
This class provides an interface for calculate a 16 bit wide Checksum.
Definition Api16.h:42
virtual uint16_t finalize(void *destBuffer=0) noexcept=0
Call this method to finalize the Checksum.
virtual void reset(void) noexcept=0
Used to re-use/restart the Checksum object.
virtual bool isOkay(void) noexcept=0
This method returns true if the data and the incoming Checksum bytes, that accumulate() has been call...
virtual void accumulate(const void *bytes, unsigned numbytes=1) noexcept=0
Call the method for every byte being Checksum'd.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20