GM6000 Digital Heater Controller Branch: main
SDX-1330
Crc32EthernetFast.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Crc32EthernetFast_h_
2#define Cpl_Checksum_Crc32EthernetFast_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/Api32.h"
16
17
18
19///
20namespace Cpl {
21///
22namespace Checksum {
23
24/** This class provides an implementation for the 32 Bit "Ethernet"
25 standard. The CRC has following characteristics:
26 o The polynomial is: x32 + x26 + x23 + x22 + x16 + x12 + x11 + x10 + x8 + x7 + x5 + x4 + x2 + x + 1
27 o The Data bytes are NOT reflected
28 o The remainder is NOT reflected.
29 o The final remainder is NOT XOR'd
30 */
32{
33private:
34 /// Calculated CRC value
35 uint32_t m_crc;
36
37public:
38 /// Constructor
40
41
42public:
43 /// See Cpl::Checksum::Api32
44 void reset( void ) noexcept;
45
46 /// See Cpl::Checksum::Api32
47 void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept;
48
49 /// See Cpl::Checksum::Api32
50 uint32_t finalize( void* destBuffer=0 ) noexcept;
51
52 /// See Cpl::Checksum::Api32
53 bool isOkay( void ) noexcept;
54};
55
56}; // end namespaces
57};
58#endif // end header latch
59
This class provides an interface for calculate a 32 bit wide Checksum.
Definition Api32.h:43
This class provides an implementation for the 32 Bit "Ethernet" standard.
Definition Crc32EthernetFast.h:32
bool isOkay(void) noexcept
See Cpl::Checksum::Api32.
void accumulate(const void *bytes, unsigned numbytes=1) noexcept
See Cpl::Checksum::Api32.
Crc32EthernetFast() noexcept
Constructor.
uint32_t finalize(void *destBuffer=0) noexcept
See Cpl::Checksum::Api32.
void reset(void) noexcept
See Cpl::Checksum::Api32.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20