![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class provides an interface for performing a MD5 Hash on a collection of bytes. More...
This class provides an interface for performing a MD5 Hash on a collection of bytes.
How to generate a Hash result:
#include <ApiMd5.h>
Public Types | |
enum | { eDIGEST_LEN =16 } |
Number of bytes in the digest. More... | |
typedef uint8_t | Digest_T[eDIGEST_LEN] |
Digest/result of the hash. | |
Public Member Functions | |
virtual void | reset (void) noexcept=0 |
Used to re-use/restart the hash object. | |
virtual void | accumulate (const void *bytes, unsigned numbytes=1) noexcept=0 |
Call the method for every byte being hash'd. | |
virtual Digest_T & | finalize (Cpl::Text::String *convertToString=0, bool uppercase=true, bool append=false)=0 |
Call this method to finalize the Hash. | |
~ApiMd5 () | |
Virtual destructor. | |
typedef uint8_t Cpl::Checksum::ApiMd5::Digest_T[eDIGEST_LEN] |
Digest/result of the hash.
anonymous enum |
Number of bytes in the digest.
|
inline |
Virtual destructor.
|
pure virtualnoexcept |
Call the method for every byte being hash'd.
Implemented in Cpl::Checksum::Md5Aladdin.
|
pure virtual |
Call this method to finalize the Hash.
The calculated hash value is returned. If 'convertToString' is NOT null, then the hash value, aka the digest is converted to a 'ASCII Hex String'
Note: The return value is only valid/in-scope UNTIL reset() is called
Implemented in Cpl::Checksum::Md5Aladdin.
|
pure virtualnoexcept |
Used to re-use/restart the hash object.
Implemented in Cpl::Checksum::Md5Aladdin.