2 #include "coreexport.h" 33 void feed(
const unsigned char* data,
int bytes );
34 void feed(
const char* data);
40 void feed(
const std::string& data );
52 const std::string
hex(
bool bLowercase=
true);
58 const std::string
binary();
68 unsigned int count[2];
70 unsigned char buf[64];
74 void process(
const unsigned char* data );
76 static const unsigned char pad[64];
const std::string binary()
Use this function to retrieve the raw binary hash.
Definition: MD5.cpp:399
different physics engine has different winding order.
Definition: EventBinding.h:32
void feed(const unsigned char *data, int bytes)
Use this function to feed the hash.
Definition: MD5.cpp:313
virtual ~MD5()
Virtual Destructor.
Definition: MD5.cpp:109
void reset()
Use this function to reset the hash.
Definition: MD5.cpp:411
const std::string hex(bool bLowercase=true)
Use this function to retrieve the hash value in hex.
Definition: MD5.cpp:378
MD5()
Constructs a new MD5 object.
Definition: MD5.cpp:103
void finalize()
This function is used to finalize the hash operation.
Definition: MD5.cpp:358
An MD% implementation.
Definition: MD5.h:15