#include <string.h>
#include "MD5Hash.h"
Go to the source code of this file.
Defines | |
| #define | F1(x, y, z) (z ^ (x & (y ^ z))) |
| core function to md5 hash | |
| #define | F2(x, y, z) F1(z, x, y) |
| core function to md5 hash | |
| #define | F3(x, y, z) (x ^ y ^ z) |
| core function to md5 hash | |
| #define | F4(x, y, z) (y ^ (x | ~z)) |
| core function to md5 hash | |
| #define | MD5STEP(f, w, x, y, z, data, s) ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) |
| This is the central step in the MD5 algorithm. | |
Functions | |
| void | byteReverse (unsigned char *buffer, unsigned longs) |
| Reverse the bytes of a buffer. | |
Definition in file MD5Hash.cpp.
|
||||||||||||
|
Definition at line 16 of file MD5Hash.cpp. Referenced by MD5Hash::Final(), and MD5Hash::Update(). |
1.4.4