maint: update copyright
[gnulib.git] / tests / test-gc-md4.c
1 /*
2  * Copyright (C) 2005, 2010-2014 Free Software Foundation, Inc.
3  * Written by Simon Josefsson
4  *
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)
8  * any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include <stdio.h>
21 #include <string.h>
22 #include "gc.h"
23
24 int
25 main (int argc, char *argv[])
26 {
27   Gc_rc rc;
28   gc_hash_handle h;
29
30   rc = gc_init ();
31   if (rc != GC_OK)
32     {
33       printf ("gc_init() failed\n");
34       return 1;
35     }
36
37   /* Test vectors from RFC 1320. */
38
39   {
40     const char *in = "abc";
41     size_t inlen = strlen (in);
42     const char *expect =
43       "\xa4\x48\x01\x7a\xaf\x21\xd8\x52\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d";
44     char out[16];
45     const char *p;
46
47     /* MD4 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b */
48
49     if (gc_md4 (in, inlen, out) != 0)
50       {
51         printf ("gc_md4 call failed\n");
52         return 1;
53       }
54
55     if (memcmp (out, expect, 16) != 0)
56       {
57         size_t i;
58         printf ("md4 1 mismatch. expected:\n");
59         for (i = 0; i < 16; i++)
60           printf ("%02x ", expect[i] & 0xFF);
61         printf ("\ncomputed:\n");
62         for (i = 0; i < 16; i++)
63           printf ("%02x ", out[i] & 0xFF);
64         printf ("\n");
65         return 1;
66       }
67
68     if (gc_hash_buffer (GC_MD4, in, inlen, out) != 0)
69       {
70         printf ("gc_hash_buffer(MD4) call failed\n");
71         return 1;
72       }
73
74     if (memcmp (out, expect, 16) != 0)
75       {
76         size_t i;
77         printf ("md4 1 mismatch. expected:\n");
78         for (i = 0; i < 16; i++)
79           printf ("%02x ", expect[i] & 0xFF);
80         printf ("\ncomputed:\n");
81         for (i = 0; i < 16; i++)
82           printf ("%02x ", out[i] & 0xFF);
83         printf ("\n");
84         return 1;
85       }
86
87     if (gc_hash_digest_length (GC_MD4) != 16)
88       {
89         printf ("gc_hash_digest_length (GC_MD4) failed\n");
90         return 1;
91       }
92
93     if ((rc = gc_hash_open (GC_MD4, 0, &h)) != GC_OK)
94       {
95         printf ("gc_hash_open(GC_MD4) failed (%d)\n", rc);
96         return 1;
97       }
98
99     gc_hash_write (h, inlen, in);
100
101     p = gc_hash_read (h);
102
103     if (!p)
104       {
105         printf ("gc_hash_read failed\n");
106         return 1;
107       }
108
109     if (memcmp (p, expect, 16) != 0)
110       {
111         size_t i;
112         printf ("md4 1 mismatch. expected:\n");
113         for (i = 0; i < 16; i++)
114           printf ("%02x ", expect[i] & 0xFF);
115         printf ("\ncomputed:\n");
116         for (i = 0; i < 16; i++)
117           printf ("%02x ", p[i] & 0xFF);
118         printf ("\n");
119         return 1;
120       }
121
122     gc_hash_close (h);
123   }
124
125   gc_done ();
126
127   return 0;
128 }