OpenVAS Scanner
6.0.0~git
|
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 (uint32 buf[4], uint32 const in[16]) |
static void | byteReverse (unsigned char *buf, unsigned longs) |
void | MD5Init (struct MD5Context *ctx) |
void | MD5Update (struct MD5Context *ctx, unsigned char const *buf, unsigned len) |
void | MD5Final (unsigned char digest[16], struct MD5Context *ctx) |
#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) |
|
static |
void MD5Final | ( | unsigned char | digest[16], |
struct MD5Context * | ctx | ||
) |
void MD5Init | ( | struct MD5Context * | ctx | ) |
void MD5Update | ( | struct MD5Context * | ctx, |
unsigned char const * | buf, | ||
unsigned | len | ||
) |