GM6000 Digital Heater Controller Branch: main
SDX-1330
Hash.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_Hash_h_
2#define Driver_Crypto_Hash_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/Api.h"
16#include <stdint.h>
17#include <stdlib.h>
18
19
20///
21namespace Driver {
22///
23namespace Crypto {
24
25
26/** This class defines an abstract interface for a Hashing Algorithms
27
28 How to generate a Hash result:
29 1. Call reset() initialize the Hash
30 2. Call accumulate() method for every byte being hash'd
31 3. Call finalize() to get the Hashed value.
32 */
33class Hash
34{
35public:
36 /// Used to re-use/restart the hash object. Returns DRIVER_CRYPTO_SUCCESS when successful.
37 virtual DriverCryptoStatus_T reset( void ) noexcept = 0;
38
39 /** Call the method for every byte being hash'd. Returns DRIVER_CRYPTO_SUCCESS when successful.
40 */
41 virtual DriverCryptoStatus_T accumulate( const void* bytes, size_t numbytes=1 ) noexcept = 0;
42
43 /** Call this method to finalize the Hash. The calculated hash
44 value is returned.
45 */
46 virtual DriverCryptoStatus_T finalize( void* dstHashDigest, size_t dstHashDigestSize ) noexcept = 0;
47
48public:
49 /// Returns the number of bytes in the digest
50 virtual size_t digestSize() const noexcept = 0;
51
52
53public:
54 /// Virtual destructor
55 ~Hash() {}
56
57};
58
59} // end namespaces
60}
61#endif // end header latch
62
63
#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.
namespace