Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 577306 | Differences between
and this patch

Collapse All | Expand All

(-)a/files/pr69140.c (+13 lines)
Lines 22-24 Link Here
22
  MD4Transform( ctx->buf, (unsigned int *)ctx->in);
22
  MD4Transform( ctx->buf, (unsigned int *)ctx->in);
23
  MD4Transform( ctx->buf, (unsigned int *)ctx->in);
23
  MD4Transform( ctx->buf, (unsigned int *)ctx->in);
24
}
24
}
25
26
int
27
main(void)
28
{
29
	MD4_CTX ctx_test = 
30
    {
31
        { 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476 },
32
        { 0, 0 }
33
    };
34
	unsigned char	buf[64];
35
36
	MD4Update(&ctx_test, (const unsigned char *) &buf);
37
}

Return to bug 577306