lhashes  1.0.0
C++ hashes library
limes::hash::SHA256 Class Referencefinal

A Hasher object that calculates a SHA256 hash. More...

#include <lhashes_sha256.h>

+ Inheritance diagram for limes::hash::SHA256:

Public Member Functions

std::string getHash () final
 Retrieves the calculated SHA256 hash value as a string. More...
 
std::size_t getLengthOfHash () const final
 Returns 64. More...
 
void update (const unsigned char *data, std::size_t length) final
 Updates the internal state of the hasher with new data. More...
 
- Public Member Functions inherited from limes::hash::Hasher
virtual ~Hasher ()=default
 Destructor. More...
 
virtual void update (std::string_view input)
 Updates the internal state of the hasher with some new data. More...
 

Related Functions

(Note that these are not member functions.)

LHASH_EXPORT std::string sha256 (const char *input, std::size_t length)
 Calculates a SHA256 hash for the given data. More...
 
LHASH_EXPORT std::string sha256 (std::string_view input)
 Calculates a SHA256 hash for the given string. More...
 

Detailed Description

A Hasher object that calculates a SHA256 hash.

Definition at line 36 of file lhashes_sha256.h.

Member Function Documentation

◆ getHash()

std::string limes::hash::SHA256::getHash ( )
finalvirtual

Retrieves the calculated SHA256 hash value as a string.

Implements limes::hash::Hasher.

◆ getLengthOfHash()

std::size_t limes::hash::SHA256::getLengthOfHash ( ) const
finalvirtual

Returns 64.

Implements limes::hash::Hasher.

◆ update()

void limes::hash::SHA256::update ( const unsigned char *  data,
std::size_t  length 
)
finalvirtual

Updates the internal state of the hasher with new data.

Implements limes::hash::Hasher.


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