#include "randomhash.hh"
Classes | |
struct | State |
Public Member Functions | |
void | digest (uint8_t hashvalue[32]) |
void | reset () |
SHA3_256 () | |
void | update (const String &s) |
void | update (const uint8_t *data, size_t length) |
~SHA3_256 () | |
SHA3_256 - 256 Bit digest generation. This class implements the SHA3 hash funtion to create 256 Bit digests, see FIPS 202 [Fips202] .
~SHA3_256 | ( | ) |
SHA3_256 | ( | ) |
Create context to calculate a 256 bit SHA3 hash digest.
void reset | ( | ) |
Reset state to feed and retrieve a new hash value.
void update | ( | const uint8_t * | data, |
size_t | length | ||
) |
Feed data to be hashed.
void digest | ( | uint8_t | hashvalue[32] | ) |
Retrieve the resulting hash value.
void update | ( | const String & | s | ) |