1#ifndef Driver_Crypto_Orlp_SHA512_h_
2#define Driver_Crypto_Orlp_SHA512_h_
16#include "orlp/ed25519/sha512.h"
46 return sha512_update( &
m_context, (
const uint8_t*) bytes, numbytes );
53 return sha512_final( &
m_context, (uint8_t*) dstHashDigest );
#define CPL_SYSTEM_ASSERT(e)
Empty macro.
Definition Assert.h:36
#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
This class implements the Hash interface using Orson Peter's SHA512 algorithm.
Definition Sha512.h:31
size_t digestSize() const noexcept
See Driver::Crypto::Hash.
Definition Sha512.h:58
SHA512()
Constructor.
Definition Sha512.h:34
DriverCryptoStatus_T accumulate(const void *bytes, size_t numbytes=1) noexcept
See Driver::Crypto::Hash.
Definition Sha512.h:44
DriverCryptoStatus_T finalize(void *dstHashDigest, size_t dstHashDigestSize) noexcept
See Driver::Crypto::Hash.
Definition Sha512.h:50
DriverCryptoStatus_T reset(void) noexcept
See Driver::Crypto::Hash.
Definition Sha512.h:38
sha512_context m_context
Algorithm context.
Definition Sha512.h:62