Go to the source code of this file.
|
#define | F1(x, y, z) (z ^ (x & (y ^ z))) |
|
#define | F2(x, y, z) F1(z, x, y) |
|
#define | F3(x, y, z) (x ^ y ^ z) |
|
#define | F4(x, y, z) (y ^ (x | ~z)) |
|
#define | MD5STEP(f, w, x, y, z, data, s) ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) |
|
#define F1 |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (z ^ (x & (y ^ z))) |
#define F3 |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (x ^ y ^ z) |
#define F4 |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (y ^ (x | ~z)) |
#define MD5STEP |
( |
|
f, |
|
|
|
w, |
|
|
|
x, |
|
|
|
y, |
|
|
|
z, |
|
|
|
data, |
|
|
|
s |
|
) |
| ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) |
unsigned long MD5_BlockChecksum |
( |
const void * |
data, |
|
|
int |
length |
|
) |
| |
void MD5_Final |
( |
MD5_CTX * |
ctx, |
|
|
unsigned char |
digest[16] |
|
) |
| |
void MD5_Transform |
( |
unsigned int |
state[4], |
|
|
unsigned int |
in[16] |
|
) |
| |