diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-03-20 20:29:28 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-03-20 20:29:28 +0000 |
commit | a159e20701d6fffcfd74cfa1ab422593d28b70ac (patch) | |
tree | a1d907105476b62242dca58f721503ed98cc6787 /regress | |
parent | 2d91dbbe63e4215d940c7e2a293ba766a20dd8b5 (diff) |
replace MD4 with MD5; ok tedu@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/gnu/egcs/gcc-bounds/md-2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/gnu/egcs/gcc-bounds/md-2.c b/regress/gnu/egcs/gcc-bounds/md-2.c index 86fa059ac35..91c89c043a0 100644 --- a/regress/gnu/egcs/gcc-bounds/md-2.c +++ b/regress/gnu/egcs/gcc-bounds/md-2.c @@ -1,17 +1,17 @@ #include <stdio.h> #include <stdlib.h> #include <sys/types.h> -#include <md4.h> +#include <md5.h> const unsigned char data[] = "1234567890abcdefghijklmnopqrstuvwxyz"; int main(int argc, char **argv) { - MD4_CTX ctx; + MD5_CTX ctx; char ret[33]; - MD4Init(&ctx); - MD4Data(data, sizeof data - 1, ret); + MD5Init(&ctx); + MD5Data(data, sizeof data - 1, ret); printf("%s\n", ret); } |