ROSE
0.11.96.11
|
Hasher for any libgcrypt hash algorithm.
The hashAlgorithmId
template parameter is one of the libgcrypt algorithm constants (type int) with a name starting with "GCRY_MD_". You can find a list here.
Definition at line 299 of file Combinatorics.h.
#include <Combinatorics.h>
Public Member Functions | |
HasherGcrypt (const HasherGcrypt &other) | |
HasherGcrypt & | operator= (const HasherGcrypt &other) |
void | clear () |
Reset the hasher to its initial state. | |
const Digest & | digest () |
Return the digest. More... | |
void | append (const uint8_t *message, size_t messageSize) |
Insert data into the digest. More... | |
![]() | |
std::string | toString () |
String representation of the digest. More... | |
void | print (std::ostream &) |
Print a hash to a stream. More... | |
void | insert (const std::string &x) |
Insert data into the digest. More... | |
void | insert (uint64_t x) |
Insert data into the digest. More... | |
void | insert (const uint8_t *x, size_t size) |
Insert data into the digest. More... | |
void | insert (const std::vector< uint8_t > &v) |
Insert data into the digest. More... | |
void | insert (std::istream &stream) |
Insert data into the digest. More... | |
Additional Inherited Members | |
![]() | |
typedef std::vector< uint8_t > | Digest |
The digest of the input message. More... | |
![]() | |
static std::string | toString (const Digest &) |
Convert a digest to a hexadecimal string. | |
![]() | |
Digest | digest_ |
|
inlinevirtual |
Return the digest.
Finalizes the hash function and returns the digest for all the input. Additional input should not be inserted after this function is called since some hash functions don't support this.
Reimplemented from Rose::Combinatorics::Hasher.
Definition at line 346 of file Combinatorics.h.
References Rose::Combinatorics::Hasher::digest().
|
inlinevirtual |
Insert data into the digest.
This is the lowest level method of inserting new message content into the digest. This can be called as often as desired, building a digest incrementally.
Implements Rose::Combinatorics::Hasher.
Definition at line 361 of file Combinatorics.h.