GM6000 Digital Heater Controller Branch: main
SDX-1330
Md5Aladdin.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Md5Aladdin_h_
2#define Cpl_Checksum_Md5Aladdin_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/ApiMd5.h"
16#include "Cpl/Checksum/md5_aladdin_.h"
17
18
19
20///
21namespace Cpl {
22///
23namespace Checksum {
24
25
26/** This class provides an implementation for the MD5 Hash interface
27 that is wrapper to the third party MD5 Library code developed
28 by L. Peter Deutsch, ghost@aladdin.com
29 */
30class Md5Aladdin : public ApiMd5
31{
32private:
33 /// Hash state
34 md5_state_t m_state;
35
36 /// Hask result
37 Digest_T m_result;
38
39public:
40 /// Constructor
41 Md5Aladdin() noexcept;
42
43
44public:
45 /// See Cpl::Checksum::ApiMd5
46 void reset( void ) noexcept;
47
48 /// See Cpl::Checksum::ApiMd5
49 void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept;
50
51 /// See Cpl::Checksum::ApiMd5
52 Digest_T& finalize( Cpl::Text::String* convertToString=0, bool uppercase=true, bool append=false ) noexcept;
53};
54
55}; // end namespaces
56};
57#endif // end header latch
58
This class provides an interface for performing a MD5 Hash on a collection of bytes.
Definition ApiMd5.h:34
uint8_t Digest_T[eDIGEST_LEN]
Digest/result of the hash.
Definition ApiMd5.h:40
This class provides an implementation for the MD5 Hash interface that is wrapper to the third party M...
Definition Md5Aladdin.h:31
Digest_T & finalize(Cpl::Text::String *convertToString=0, bool uppercase=true, bool append=false) noexcept
See Cpl::Checksum::ApiMd5.
void accumulate(const void *bytes, unsigned numbytes=1) noexcept
See Cpl::Checksum::ApiMd5.
void reset(void) noexcept
See Cpl::Checksum::ApiMd5.
Md5Aladdin() noexcept
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Define the state of the MD5 Algorithm.
Definition md5_aladdin_.h:67