|
reSIProcate/rutil
9694
|
Used to accumlate data written to the stream in a MD5Buffer and convert the data to MD5. More...
#include <MD5Stream.hxx>


Public Member Functions | |
| MD5Stream () | |
| ~MD5Stream () | |
| Data | getHex () |
| Calls flush() on itself and returns the MD5 data in hex format. | |
| Data | getBin () |
Used to accumlate data written to the stream in a MD5Buffer and convert the data to MD5.
Definition at line 35 of file MD5Stream.hxx.
| MD5Stream::MD5Stream | ( | ) |
Definition at line 64 of file MD5Stream.cxx.
: std::ostream(this)
{
}
| MD5Stream::~MD5Stream | ( | ) |
Definition at line 69 of file MD5Stream.cxx.
{}
| Data MD5Stream::getBin | ( | ) |
Reimplemented from resip::MD5Buffer.
Definition at line 81 of file MD5Stream.cxx.
{
flush();
return MD5Buffer::getBin();
}
| Data MD5Stream::getHex | ( | ) |
Calls flush() on itself and returns the MD5 data in hex format.
Reimplemented from resip::MD5Buffer.
Definition at line 73 of file MD5Stream.cxx.
Referenced by main().
{
flush();
return MD5Buffer::getHex();
//return mStreambuf.getHex();
}
1.7.5.1