ReactOS 0.4.16-dev-297-gc569aee
|
Go to the source code of this file.
Macros | |
#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 ) |
Functions | |
static void | MD5Transform (unsigned int buf[4], const unsigned int in[16]) |
VOID NTAPI | MD5Init (MD5_CTX *ctx) |
VOID NTAPI | MD5Update (MD5_CTX *ctx, const unsigned char *buf, unsigned int len) |
VOID NTAPI | MD5Final (MD5_CTX *ctx) |
Definition at line 113 of file md5.c.
Referenced by finalize_hash_impl(), and SECUR32_CalcNTLM2Subkey().
Definition at line 45 of file md5.c.
Referenced by init_hash_impl(), and SECUR32_CalcNTLM2Subkey().
Definition at line 175 of file md5.c.
Referenced by MD5Final(), and MD5Update().
Definition at line 59 of file md5.c.
Referenced by SECUR32_CalcNTLM2Subkey(), and update_hash_impl().