2 * Copyright (C) 2005, 2010-2020 Free Software Foundation, Inc.
3 * Written by Simon Josefsson
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <https://www.gnu.org/licenses/>. */
26 main (int argc
, char *argv
[])
34 printf ("gc_init() failed\n");
38 /* Test vectors from RFC 1320. */
41 const char *in
= "abc";
42 size_t inlen
= strlen (in
);
44 "\xa4\x48\x01\x7a\xaf\x21\xd8\x52\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d";
48 /* MD4 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b */
50 if (gc_md4 (in
, inlen
, out
) != 0)
52 printf ("gc_md4 call failed\n");
56 if (memcmp (out
, expect
, 16) != 0)
59 printf ("md4 1 mismatch. expected:\n");
60 for (i
= 0; i
< 16; i
++)
61 printf ("%02x ", expect
[i
] & 0xFF);
62 printf ("\ncomputed:\n");
63 for (i
= 0; i
< 16; i
++)
64 printf ("%02x ", out
[i
] & 0xFF);
69 if (gc_hash_buffer (GC_MD4
, in
, inlen
, out
) != 0)
71 printf ("gc_hash_buffer(MD4) call failed\n");
75 if (memcmp (out
, expect
, 16) != 0)
78 printf ("md4 1 mismatch. expected:\n");
79 for (i
= 0; i
< 16; i
++)
80 printf ("%02x ", expect
[i
] & 0xFF);
81 printf ("\ncomputed:\n");
82 for (i
= 0; i
< 16; i
++)
83 printf ("%02x ", out
[i
] & 0xFF);
88 if (gc_hash_digest_length (GC_MD4
) != 16)
90 printf ("gc_hash_digest_length (GC_MD4) failed\n");
94 if ((rc
= gc_hash_open (GC_MD4
, 0, &h
)) != GC_OK
)
96 printf ("gc_hash_open(GC_MD4) failed (%d)\n", rc
);
100 gc_hash_write (h
, inlen
, in
);
102 p
= gc_hash_read (h
);
106 printf ("gc_hash_read failed\n");
110 if (memcmp (p
, expect
, 16) != 0)
113 printf ("md4 1 mismatch. expected:\n");
114 for (i
= 0; i
< 16; i
++)
115 printf ("%02x ", expect
[i
] & 0xFF);
116 printf ("\ncomputed:\n");
117 for (i
= 0; i
< 16; i
++)
118 printf ("%02x ", p
[i
] & 0xFF);