Go to the source code of this file.
Defines |
| #define | rotl32(x, n) (((x) << ((unsigned int)(n))) | ((x) >> (32 - (unsigned int)(n)))) |
| #define | F(x, y, z) (((x) & (y)) | ((~x) & (z))) |
| #define | G(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z))) |
| #define | H(x, y, z) ((x) ^ (y) ^ (z)) |
| #define | FF(a, b, c, d, x, s) |
| #define | GG(a, b, c, d, x, s) |
| #define | HH(a, b, c, d, x, s) |
Functions |
| static void | MD4Transform (unsigned int buf[4], const unsigned int in[16]) |
| VOID WINAPI | MD4Init (MD4_CTX *ctx) |
| VOID WINAPI | MD4Update (MD4_CTX *ctx, const unsigned char *buf, unsigned int len) |
| VOID WINAPI | MD4Final (MD4_CTX *ctx) |