GM6000 Digital Heater Controller Branch: main
SDX-1330
Fletcher16.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Fletcher16_h_
2#define Cpl_Checksum_Fletcher16_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Checksum/Api16.h"
16
17
18
19///
20namespace Cpl {
21///
22namespace Checksum {
23
24
25/** This class provides an implementation for the 16 Bit wide
26 Fletcher Checksum
27 */
28class Fletcher16 : public Api16
29{
30private:
31 /// current sum
32 uint8_t m_sum1;
33
34 /// current sum
35 uint8_t m_sum2;
36
37
38public:
39 /// Constructor
40 Fletcher16() noexcept;
41
42
43public:
44 /// See Cpl::Checksum::Ap16
45 void reset( void ) noexcept;
46
47 /// See Cpl::Checksum::Ap16
48 void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept;
49
50 /// See Cpl::Checksum::Ap16
51 uint16_t finalize( void* destBuffer=0 ) noexcept;
52
53 /// See Cpl::Checksum::Ap16
54 bool isOkay( void ) noexcept;
55};
56
57
58}; // end namespaces
59};
60#endif // end header latch
61
This class provides an interface for calculate a 16 bit wide Checksum.
Definition Api16.h:42
This class provides an implementation for the 16 Bit wide Fletcher Checksum.
Definition Fletcher16.h:29
void accumulate(const void *bytes, unsigned numbytes=1) noexcept
See Cpl::Checksum::Ap16.
void reset(void) noexcept
See Cpl::Checksum::Ap16.
bool isOkay(void) noexcept
See Cpl::Checksum::Ap16.
Fletcher16() noexcept
Constructor.
uint16_t finalize(void *destBuffer=0) noexcept
See Cpl::Checksum::Ap16.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20