Fix typos in comment, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
[gnulib.git] / tests / test-gc-md2.c
1 /*
2  * Copyright (C) 2005 Free Software Foundation
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 2, 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18  * 02110-1301, USA.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <string.h>
26 #include "gc.h"
27
28 int
29 main (int argc, char *argv[])
30 {
31   Gc_rc rc;
32   gc_hash_handle h;
33
34   rc = gc_init ();
35   if (rc != GC_OK)
36     {
37       printf ("gc_init() failed\n");
38       return 1;
39     }
40
41   /* Test vectors from RFC 1319. */
42
43   {
44     char *in = "abcdefghijklmnopqrstuvwxyz";
45     size_t inlen = strlen (in);
46     char *expect =
47       "\x4e\x8d\xdf\xf3\x65\x02\x92\xab\x5a\x41\x08\xc3\xaa\x47\x94\x0b";
48     char out[16];
49     const char *p;
50
51     if (gc_md2 (in, inlen, out) != 0)
52       {
53         printf ("gc_md2 call failed\n");
54         return 1;
55       }
56
57     if (memcmp (out, expect, 16) != 0)
58       {
59         size_t i;
60         printf ("md2 1 mismatch. expected:\n");
61         for (i = 0; i < 16; i++)
62           printf ("%02x ", expect[i] & 0xFF);
63         printf ("\ncomputed:\n");
64         for (i = 0; i < 16; i++)
65           printf ("%02x ", out[i] & 0xFF);
66         printf ("\n");
67         return 1;
68       }
69
70     if (gc_hash_buffer (GC_MD2, in, inlen, out) != 0)
71       {
72         printf ("gc_hash_buffer(MD2) call failed\n");
73         return 1;
74       }
75
76     if (memcmp (out, expect, 16) != 0)
77       {
78         size_t i;
79         printf ("md2 2 mismatch. expected:\n");
80         for (i = 0; i < 16; i++)
81           printf ("%02x ", expect[i] & 0xFF);
82         printf ("\ncomputed:\n");
83         for (i = 0; i < 16; i++)
84           printf ("%02x ", out[i] & 0xFF);
85         printf ("\n");
86         return 1;
87       }
88
89     if (gc_hash_digest_length (GC_MD2) != 16)
90       {
91         printf ("gc_hash_digest_length (GC_MD2) failed\n");
92         return 1;
93       }
94
95     if ((rc = gc_hash_open (GC_MD2, 0, &h)) != GC_OK)
96       {
97         printf ("gc_hash_open(GC_MD2) failed (%d)\n", rc);
98         return 1;
99       }
100
101     gc_hash_write (h, inlen, in);
102
103     p = gc_hash_read (h);
104
105     if (!p)
106       {
107         printf ("gc_hash_read failed\n");
108         return 1;
109       }
110
111     if (memcmp (p, expect, 16) != 0)
112         {
113         size_t i;
114         printf ("md2 3 mismatch. expected:\n");
115         for (i = 0; i < 16; i++)
116           printf ("%02x ", expect[i] & 0xFF);
117         printf ("\ncomputed:\n");
118         for (i = 0; i < 16; i++)
119           printf ("%02x ", p[i] & 0xFF);
120         printf ("\n");
121         return 1;
122       }
123
124     gc_hash_close (h);
125   }
126
127   gc_done ();
128
129   return 0;
130 }