![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class provides an interface for calculate a 16 bit wide Checksum. More...
This class provides an interface for calculate a 16 bit wide Checksum.
The specific of the checksum is determine by the concrete class implementing this interface.
How to generate a Checksum:
How to verify a Checksum:
#include <Api16.h>
Public Member Functions | |
virtual void | reset (void) noexcept=0 |
Used to re-use/restart the Checksum object. | |
virtual void | accumulate (const void *bytes, unsigned numbytes=1) noexcept=0 |
Call the method for every byte being Checksum'd. | |
virtual uint16_t | finalize (void *destBuffer=0) noexcept=0 |
Call this method to finalize the Checksum. | |
virtual bool | isOkay (void) noexcept=0 |
This method returns true if the data and the incoming Checksum bytes, that accumulate() has been called on, is good. | |
~Api16 () | |
Virtual destructor. | |
|
inline |
Virtual destructor.
|
pure virtualnoexcept |
Call the method for every byte being Checksum'd.
Implemented in Cpl::Checksum::Crc16CcittFast, and Cpl::Checksum::Fletcher16.
|
pure virtualnoexcept |
Call this method to finalize the Checksum.
The calculated Checksum value is returned. If 'destBuffer' is NOT null, then the Checksum value is appended to the buffer starting at the address specified by 'destBuffer'. Note: the application is responsible for ensure there is sufficient space (and additional 2 bytes) for the appended Checksum value.
Implemented in Cpl::Checksum::Crc16CcittFast, and Cpl::Checksum::Fletcher16.
|
pure virtualnoexcept |
This method returns true if the data and the incoming Checksum bytes, that accumulate() has been called on, is good.
Returns true if the Checksum check passes; else false is returned
Implemented in Cpl::Checksum::Crc16CcittFast, and Cpl::Checksum::Fletcher16.
|
pure virtualnoexcept |
Used to re-use/restart the Checksum object.
Implemented in Cpl::Checksum::Crc16CcittFast, and Cpl::Checksum::Fletcher16.