flimEngine
md5.h
Go to the documentation of this file.
1 #ifndef MD5_H
2 #define MD5_H
3 
4 // Order is from low-order byte to high-order byte of digest.
5 // Each byte is printed with high-order hexadecimal digit first.
6 struct MD5Output
7 {
8  unsigned int dWord_0; // [0][1][2][3] // lowest byte
9  unsigned int dWord_1;
10  unsigned int dWord_2;
11  unsigned int dWord_3; // [12][13][14][15] // highest order byte
12 };
13 
14 // take a raw buffer and find a hash number (16-bytes) see above)
15 void MD5Buffer (unsigned char *buffer, unsigned int buffLen, MD5Output &out);
16 
17 #endif
unsigned int dWord_3
Definition: md5.h:11
unsigned int dWord_1
Definition: md5.h:9
unsigned int dWord_0
Definition: md5.h:8
void MD5Buffer(unsigned char *buffer, unsigned int buffLen, MD5Output &out)
Definition: md5.cpp:335
unsigned int dWord_2
Definition: md5.h:10
Definition: md5.h:6