GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_Password_Api_h_
2#define Driver_Crypto_Password_Api_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17#include "Driver/Crypto/Hash.h"
18
19
20/// Result: Success
21#define DRIVER_CRYPTO_PASSWORD_SUCCESS DRIVER_CRYPTO_SUCCESS
22
23/// Result: Output buffer not large enough to hold the hash output
24#define DRIVER_CRYPTO_PASSWORD_OUTPUT_BAD_SIZE (DRIVER_CRYPTO_SUCCESS+1)
25
26/// Result: Provided work buffer not large enough
27#define DRIVER_CRYPTO_PASSWORD_WORK_BUFFER_BAD_SIZE (DRIVER_CRYPTO_SUCCESS+2)
28
29/// Result: Provided work hash digest buffer not large enough
30#define DRIVER_CRYPTO_PASSWORD_WORK_DIGEST_BAD_SIZE (DRIVER_CRYPTO_SUCCESS+3)
31
32/// Result: Hash function failure
33#define DRIVER_CRYPTO_PASSWORD_HASH_FUNCTION_ERROR (DRIVER_CRYPTO_SUCCESS+4)
34
35///
36namespace Driver {
37///
38namespace Crypto {
39///
40namespace PasswordHash {
41
42
43/** This method takes plain text plus a 'salt' and generates an hashed
44 output. Expected use is for a primitive 'hash' of password. The
45 algorithm is:
46 \code
47
48 H = FUNC(HF, plaintext, salt, c)
49 where:
50 - H is output of FUNC (i.e., the final result of the hashing process).
51 o The size, in bytes, of H is 32 bytes (i.e., the size of the HF
52 function’s digest).
53 - FUNC is the top-level function.
54 - HF is the cryptographic hashing function.
55 - salt is a N byte array provided by caller
56 - plaintext is ASCII plain text, i.e. the password that is being ‘hashed’.
57 - c is the number of iterations to run HF hashing algorithm. The first
58 iteration is performed on plaintext + salt, subsequent iterations use
59 plaintext + <previous-iteration-output> as their input. The output
60 of each iteration is XOR’d to produce the final result.
61
62 F(plaintext, salt, c) = U1 ^ U2 … ^ Uc
63 where:
64 U1 = HF(plaintext + salt)
65 U2 = HF(plaintext + U1)
66 Uc = HF(plaintext + Uc-1)
67
68 \endcode
69
70 Notes:
71 - The size of 'dstOutputBuffer' MUST be greater than or equal to the
72 size of the hashFunction's digest size.
73 - The caller is required to provide a 'workBuffer' who's size is equal
74 to OR larger than ALL of the values listed below:
75 o plaintextLength + saltLength
76 o plaintextLength + hashFunction.digestSize()
77 - The caller is required to provide additional 'workDigest' memory that
78 is used a scratch pad for the hash digest. The size must be greater
79 than or equal to the size of the hashFunction's digest.
80 */
81DriverCryptoStatus_T hash( const char* plaintext,
82 size_t plaintextLength,
83 const void* salt,
84 size_t saltLength,
85 uint8_t* workBuffer,
86 size_t workBufferLength,
87 uint8_t* workDigest,
88 size_t workDigestLength,
89 Driver::Crypto::Hash& hashFunction,
90 size_t numIterations,
91 void* dstOutputBuffer,
92 size_t dstOutputBufferLen ) noexcept;
93
94
95
96} // End namespace(s)
97}
98}
99
100/*--------------------------------------------------------------------------*/
101#endif // end header latch
#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
DriverCryptoStatus_T hash(const char *plaintext, size_t plaintextLength, const void *salt, size_t saltLength, uint8_t *workBuffer, size_t workBufferLength, uint8_t *workDigest, size_t workDigestLength, Driver::Crypto::Hash &hashFunction, size_t numIterations, void *dstOutputBuffer, size_t dstOutputBufferLen) noexcept
This method takes plain text plus a 'salt' and generates an hashed output.
namespace