Anklang C++ API 0.0.0
Loading...
Searching...
No Matches
SHA3_512

#include "randomhash.hh"

Classes

struct State

Public Member Functions

voiddigest (uint8_t hashvalue[64])
voidreset ()
SHA3_512 ()
voidupdate (const String &s)
voidupdate (const uint8_t *data, size_t length)
~SHA3_512 ()

Detailed Description

SHA3_512 - 512 Bit digest generation. This class implements the SHA3 hash funtion to create 512 Bit digests, see FIPS 202 [Fips202] .

Constructor & Destructor Documentation

~SHA3_512()

~SHA3_512 ( )

SHA3_512()

SHA3_512 ( )

Create context to calculate a 512 bit SHA3 hash digest.

Member Function Documentation

reset()

void reset ( )

Reset state to feed and retrieve a new hash value.

update() [1/2]

void update ( const uint8_t * data,
size_t length
)

Feed data to be hashed.

digest()

void digest ( uint8_t hashvalue[64])

Retrieve the resulting hash value.

update() [2/2]

void update ( const String & s)