GM6000 Digital Heater Controller Branch: main
SDX-1330
Sha512.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_Orlp_SHA512_h_
2#define Driver_Crypto_Orlp_SHA512_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 "Driver/Crypto/Hash.h"
16#include "orlp/ed25519/sha512.h"
17#include "Cpl/System/Assert.h"
18
19///
20namespace Driver {
21///
22namespace Crypto {
23///
24namespace Orlp {
25
26
27/** This class implements the Hash interface using Orson Peter's SHA512
28 algorithm
29 */
31{
32public:
33 /// Constructor
34 SHA512() { sha512_init( &m_context ); }
35
36public:
37 /// See Driver::Crypto::Hash
38 DriverCryptoStatus_T reset( void ) noexcept
39 {
40 return sha512_init( &m_context );
41 }
42
43 /// See Driver::Crypto::Hash
44 DriverCryptoStatus_T accumulate( const void* bytes, size_t numbytes=1 ) noexcept
45 {
46 return sha512_update( &m_context, (const uint8_t*) bytes, numbytes );
47 }
48
49 /// See Driver::Crypto::Hash
50 DriverCryptoStatus_T finalize( void* dstHashDigest, size_t dstHashDigestSize ) noexcept
51 {
52 CPL_SYSTEM_ASSERT( dstHashDigest >= 64 );
53 return sha512_final( &m_context, (uint8_t*) dstHashDigest );
54 }
55
56public:
57 /// See Driver::Crypto::Hash
58 size_t digestSize() const noexcept { return 64; }
59
60protected:
61 /// Algorithm context
62 sha512_context m_context;
63};
64
65} // end namespaces
66}
67}
68#endif // end header latch
69
70
#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
namespace