tlx

SHA-512 processor without external dependencies. More...

#include <sha512.hpp>

Public Member Functions

 SHA512 ()
 construct empty object. More...
 
 SHA512 (const void *data, uint32_t size)
 construct context and process data range More...
 
 SHA512 (const std::string &str)
 construct context and process string More...
 
void process (const void *data, uint32_t size)
 process more data More...
 
void process (const std::string &str)
 process more data More...
 
void finalize (void *digest)
 finalize computation and output 64 byte (512 bit) digest More...
 
std::string digest ()
 finalize computation and return 64 byte (512 bit) digest More...
 
std::string digest_hex ()
 finalize computation and return 64 byte (512 bit) digest hex encoded More...
 
std::string digest_hex_uc ()
 finalize computation and return 64 byte (512 bit) digest upper-case hex More...
 

Static Public Attributes

static constexpr size_t kDigestLength
 digest length in bytes More...
 

Private Attributes

uint64_t length_
 
uint64_t state_ [8]
 
uint32_t curlen_
 
uint8_t buf_ [128]
 

Detailed Description

SHA-512 processor without external dependencies.

Definition at line 39 of file sha512.hpp.

Constructor & Destructor Documentation

◆ SHA512() [1/3]

SHA512 ( )

construct empty object.

Definition at line 157 of file sha512.cpp.

◆ SHA512() [2/3]

SHA512 ( const void *  data,
uint32_t  size 
)

construct context and process data range

Definition at line 170 of file sha512.cpp.

◆ SHA512() [3/3]

SHA512 ( const std::string &  str)
explicit

construct context and process string

Definition at line 174 of file sha512.cpp.

Member Function Documentation

◆ digest()

std::string digest ( )

finalize computation and return 64 byte (512 bit) digest

Definition at line 250 of file sha512.cpp.

◆ digest_hex()

std::string digest_hex ( )

finalize computation and return 64 byte (512 bit) digest hex encoded

Definition at line 256 of file sha512.cpp.

◆ digest_hex_uc()

std::string digest_hex_uc ( )

finalize computation and return 64 byte (512 bit) digest upper-case hex

Definition at line 262 of file sha512.cpp.

◆ finalize()

void finalize ( void *  digest)

finalize computation and output 64 byte (512 bit) digest

Definition at line 216 of file sha512.cpp.

◆ process() [1/2]

void process ( const std::string &  str)

process more data

Definition at line 212 of file sha512.cpp.

◆ process() [2/2]

void process ( const void *  data,
uint32_t  size 
)

process more data

Definition at line 178 of file sha512.cpp.

Member Data Documentation

◆ buf_

uint8_t buf_[128]
private

Definition at line 71 of file sha512.hpp.

◆ curlen_

uint32_t curlen_
private

Definition at line 70 of file sha512.hpp.

◆ kDigestLength

constexpr size_t kDigestLength
staticconstexpr

digest length in bytes

Definition at line 55 of file sha512.hpp.

◆ length_

uint64_t length_
private

Definition at line 68 of file sha512.hpp.

◆ state_

uint64_t state_[8]
private

Definition at line 69 of file sha512.hpp.


The documentation for this class was generated from the following files: