GM6000 Digital Heater Controller Branch: main
SDX-1330
ApiMd5.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_ApiMd5_h_
2#define Cpl_Checksum_ApiMd5_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 <stdint.h>
16#include "Cpl/Text/String.h"
17
18
19///
20namespace Cpl {
21///
22namespace Checksum {
23
24
25/** This class provides an interface for performing a MD5 Hash on a
26 collection of bytes.
27
28 How to generate a Hash result:
29 1. Call reset() initialize the Hash
30 2. Call accumulate() method for every byte being hash'd
31 3. Call finalize() to get the Hashed value.
32 */
33class ApiMd5
34{
35public:
36 /// Number of bytes in the digest
37 enum { eDIGEST_LEN=16 };
38
39 /// Digest/result of the hash
40 typedef uint8_t Digest_T[eDIGEST_LEN];
41
42
43public:
44 /// Used to re-use/restart the hash object
45 virtual void reset( void ) noexcept = 0;
46
47 /** Call the method for every byte being hash'd
48 */
49 virtual void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept = 0;
50
51 /** Call this method to finalize the Hash. The calculated hash
52 value is returned. If 'convertToString' is NOT null, then the
53 hash value, aka the digest is converted to a 'ASCII Hex String'
54
55 Note: The return value is only valid/in-scope UNTIL reset() is
56 called
57 */
58 virtual Digest_T& finalize( Cpl::Text::String* convertToString=0, bool uppercase=true, bool append=false ) = 0;
59
60
61public:
62 /// Virtual destructor
63 ~ApiMd5() {}
64
65};
66
67}; // end namespaces
68};
69#endif // end header latch
70
71
This class provides an interface for performing a MD5 Hash on a collection of bytes.
Definition ApiMd5.h:34
virtual void accumulate(const void *bytes, unsigned numbytes=1) noexcept=0
Call the method for every byte being hash'd.
virtual void reset(void) noexcept=0
Used to re-use/restart the hash object.
virtual Digest_T & finalize(Cpl::Text::String *convertToString=0, bool uppercase=true, bool append=false)=0
Call this method to finalize the Hash.
uint8_t Digest_T[eDIGEST_LEN]
Digest/result of the hash.
Definition ApiMd5.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20