![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines an abstract interface for a Hashing Algorithms. More...
This class defines an abstract interface for a Hashing Algorithms.
How to generate a Hash result:
#include <Hash.h>
Public Member Functions | |
virtual DriverCryptoStatus_T | reset (void) noexcept=0 |
Used to re-use/restart the hash object. Returns DRIVER_CRYPTO_SUCCESS when successful. | |
virtual DriverCryptoStatus_T | accumulate (const void *bytes, size_t numbytes=1) noexcept=0 |
Call the method for every byte being hash'd. | |
virtual DriverCryptoStatus_T | finalize (void *dstHashDigest, size_t dstHashDigestSize) noexcept=0 |
Call this method to finalize the Hash. | |
virtual size_t | digestSize () const noexcept=0 |
Returns the number of bytes in the digest. | |
~Hash () | |
Virtual destructor. | |
|
inline |
Virtual destructor.
|
pure virtualnoexcept |
Call the method for every byte being hash'd.
Returns DRIVER_CRYPTO_SUCCESS when successful.
Implemented in Driver::Crypto::Orlp::SHA512.
|
pure virtualnoexcept |
Returns the number of bytes in the digest.
Implemented in Driver::Crypto::Orlp::SHA512.
|
pure virtualnoexcept |
Call this method to finalize the Hash.
The calculated hash value is returned.
Implemented in Driver::Crypto::Orlp::SHA512.
|
pure virtualnoexcept |
Used to re-use/restart the hash object. Returns DRIVER_CRYPTO_SUCCESS when successful.
Implemented in Driver::Crypto::Orlp::SHA512.