#include <md5.h>
Public Member Functions | |
| MD5 () | |
| virtual | ~MD5 () |
| void | feed (const unsigned char *data, int bytes) |
| void | feed (const std::string &data) |
| void | finalize () |
| const std::string | hex () |
| const std::string | binary () |
| void | reset () |
This is an implementation of the Message Digest Algorithm as decribed in RFC 1321. The original code has been taken from an implementation by L. Peter Deutsch.
Definition at line 69 of file md5.h.
|
|
Constructs a new MD5 object. |
|
|
Virtual Destructor. |
|
|
Use this function to retrieve the raw binary hash.
|
|
|
Use this function to feed the hash.
|
|
||||||||||||
|
Use this function to feed the hash.
|
|
|
This function is used to finalize the hash operation. Use it after the last feed() and before calling hex(). |
|
|
Use this function to retrieve the hash value in hex.
|
|
|
Use this function to reset the hash. |
1.4.1