9 #define XAX(x, y, z) (z ^ (x & (y ^ z)))
10 #define AAA(x, y, z) ((x & y) | (x & z) | (y & z))
11 #define XXX(x, y, z) (x ^ y ^ z)
13 #define md4_round(m, w, x, y, z, v, s) \
14 w += m(x, y, z) + v; \
15 w = rotate_left_32(w, s)
20 context->digest[0] = 0x67452301;
21 context->digest[1] = 0xEFCDAB89;
22 context->digest[2] = 0x98BADCFE;
23 context->digest[3] = 0x10325476;
30 return ((((
value) << (rot)) & 0xFFFFFFFF) | ((
value) >> (32 - (rot))));
42 for (
ut32 t = 0; t < 16; ++t) {
111 if (
context->len_low > 0xFFFFFFFFull) {
112 context->len_low &= 0xFFFFFFFFull;
115 if (
context->len_high > 0xFFFFFFFFull) {
159 for (
ut32 t = 0; t < 4; ++t) {
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void length
void md4_padding(RzMD4 *context)
#define md4_round(m, w, x, y, z, v, s)
static ut32 rotate_left_32(ut32 value, ut32 rot)
bool rz_md4_update(RzMD4 *context, const ut8 *data, ut64 length)
void rz_md4_init(RzMD4 *context)
void rz_md4_fini(ut8 *hash, RzMD4 *context)
static void md4_digest_block(RzMD4 *context)
#define RZ_HASH_MD4_BLOCK_LENGTH
#define rz_return_if_fail(expr)
#define rz_return_val_if_fail(expr, val)
static void rz_write_le32(void *dest, ut32 val)
static ut32 rz_read_at_le32(const void *src, size_t offset)
static void rz_write_at_le32(void *dest, ut32 val, size_t offset)
ut64(WINAPI *w32_GetEnabledXStateFeatures)()