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

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

#include <lhashes_sha1.h>

+ Inheritance diagram for limes::hash::SHA1:

Public Member Functions

std::string getHash () final
 Retrieves the calculated SHA1 hash value as a string. More...
 
std::size_t getLengthOfHash () const final
 Returns 40. 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 sha1 (const char *input, std::size_t length)
 Calculates a SHA1 hash for the given data. More...
 
LHASH_EXPORT std::string sha1 (std::string_view input)
 Calculates a SHA1 hash for the given string. More...
 

Detailed Description

A Hasher object that calculates a SHA1 hash.

Note
SHA1 is considered to be insecure and shouldn't be used for security-critical purposes in new projects, but is provided here for backwards compatibility.

Definition at line 39 of file lhashes_sha1.h.

Member Function Documentation

◆ getHash()

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

Retrieves the calculated SHA1 hash value as a string.

Implements limes::hash::Hasher.

◆ getLengthOfHash()

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

Returns 40.

Implements limes::hash::Hasher.

◆ update()

void limes::hash::SHA1::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: