Home | History | Annotate | Download | only in http

Lines Matching defs:Uint32

52 typedef uint32 Uint32;
77 static void w2b(Uint8 *out, const Uint32 *in, Uint32 len)
79 Uint8 *bp; const Uint32 *wp, *wpend;
95 static void b2w(Uint32 *out, const Uint8 *in, Uint32 len)
97 Uint32 *wp; const Uint8 *bp, *bpend;
105 *wp = (Uint32) (bp[0] ) |
106 (Uint32) (bp[1] << 8) |
107 (Uint32) (bp[2] << 16) |
108 (Uint32) (bp[3] << 24);
113 static void md4step(Uint32 state[4], const Uint8 *data)
115 Uint32 A, B, C, D, X[16];
148 void MD4Sum(const Uint8 *input, Uint32 inputLen, Uint8 *result)
151 Uint32 i, n, m, state[4];