1#ifndef Driver_Crypto_Hash_h_
2#define Driver_Crypto_Hash_h_
#define DriverCryptoStatus_T
Return Status. DRIVER_CRYPTO_SUCCESS is success, all other values indicate an error.
Definition Api.h:20
This class defines an abstract interface for a Hashing Algorithms.
Definition Hash.h:34
virtual size_t digestSize() const noexcept=0
Returns the number of bytes in the digest.
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 reset(void) noexcept=0
Used to re-use/restart the hash object. Returns DRIVER_CRYPTO_SUCCESS when successful.
virtual DriverCryptoStatus_T finalize(void *dstHashDigest, size_t dstHashDigestSize) noexcept=0
Call this method to finalize the Hash.