![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
The 'PasswordHash' namespace provides a basic 'algorithm' to hash a password when something like 'bcrypt' is not available. More...
The 'PasswordHash' namespace provides a basic 'algorithm' to hash a password when something like 'bcrypt' is not available.
Functions | |
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. | |
|
noexcept |
This method takes plain text plus a 'salt' and generates an hashed output.
Expected use is for a primitive 'hash' of password. The algorithm is:
Notes: