#include <SHA1Calculator.hpp>
List of all members.
Public Member Functions |
| SHA1Calculator () |
void | reset () |
| resets hash
|
void | update (const unsigned char *buffer, size_t bufferSize) |
| update hash with buffer of bytes
|
void | update (const std::string &buffer) |
| update hash with buffer of bytes
|
void | close () |
| finish the hash
|
std::string | hash () const |
| returns the current hash value note: close() must be called first to retrieve final hash value
|
std::string | hashProjected () const |
| returns projected final hash value as if close() were called first; hash remains open and update() may be called afterwards
|
Static Public Member Functions |
static std::string | hash (const std::string &buffer) |
| static function to calculate hash of a buffer
|
static std::string | hash (const unsigned char *buffer, size_t bufferSize) |
| static function to calculate hash of a buffer
|
static std::string | hash (std::istream &is) |
| static function to calculate hash of an input stream
|
static std::string | hashFile (const std::string &filename) |
| static function to calculate hash of a file
|
Private Attributes |
boost::shared_ptr< Impl > | impl_ |
Detailed Description
Definition at line 37 of file SHA1Calculator.hpp.
Constructor & Destructor Documentation
pwiz::util::SHA1Calculator::SHA1Calculator |
( |
| ) |
|
Member Function Documentation
void pwiz::util::SHA1Calculator::reset |
( |
| ) |
|
resets hash
Referenced by test().
void pwiz::util::SHA1Calculator::update |
( |
const unsigned char * |
buffer, |
|
|
size_t |
bufferSize |
|
) |
| |
void pwiz::util::SHA1Calculator::update |
( |
const std::string & |
buffer | ) |
|
update hash with buffer of bytes
void pwiz::util::SHA1Calculator::close |
( |
| ) |
|
std::string pwiz::util::SHA1Calculator::hash |
( |
| ) |
const |
std::string pwiz::util::SHA1Calculator::hashProjected |
( |
| ) |
const |
static std::string pwiz::util::SHA1Calculator::hash |
( |
const std::string & |
buffer | ) |
|
|
static |
static function to calculate hash of a buffer
static std::string pwiz::util::SHA1Calculator::hash |
( |
const unsigned char * |
buffer, |
|
|
size_t |
bufferSize |
|
) |
| |
|
static |
static function to calculate hash of a buffer
static std::string pwiz::util::SHA1Calculator::hash |
( |
std::istream & |
is | ) |
|
|
static |
static function to calculate hash of an input stream
static std::string pwiz::util::SHA1Calculator::hashFile |
( |
const std::string & |
filename | ) |
|
|
static |
static function to calculate hash of a file
Referenced by testFile().
Member Data Documentation
boost::shared_ptr<Impl> pwiz::util::SHA1Calculator::impl_ |
|
private |
The documentation for this class was generated from the following file: