#include <ntdef.h>
Go to the source code of this file.
◆ MD4Final()
Definition at line 113 of file md4.c.
149 ((
unsigned int *)
ctx->in)[14] =
ctx->i[0];
150 ((
unsigned int *)
ctx->in)[15] =
ctx->i[1];
static void MD4Transform(unsigned int buf[4], unsigned int const in[16])
GLuint GLuint GLsizei count
void byteReverse(unsigned char *buf, unsigned longs)
#define memcpy(s1, s2, n)
◆ MD4Init()
Definition at line 45 of file md4.c.
47 ctx->buf[0] = 0x67452301;
48 ctx->buf[1] = 0xefcdab89;
49 ctx->buf[2] = 0x98badcfe;
50 ctx->buf[3] = 0x10325476;
◆ MD4Update()
Definition at line 59 of file md4.c.
61 register unsigned int t;
66 if ((
ctx->i[0] =
t + (
len << 3)) <
t)
75 unsigned char *
p = (
unsigned char *)
ctx->in +
t;
static void MD4Transform(unsigned int buf[4], unsigned int const in[16])
GLenum GLuint GLenum GLsizei const GLchar * buf
void byteReverse(unsigned char *buf, unsigned longs)
#define memcpy(s1, s2, n)