pty: Activate the signature wrapper of forkpty.
[gnulib.git] / tests / test-gc-md2.c
1 /*
2  * Copyright (C) 2005, 2010-2013 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 1319. */
38
39   {
40     char *in = "abcdefghijklmnopqrstuvwxyz";
41     size_t inlen = strlen (in);
42     char *expect =
43       "\x4e\x8d\xdf\xf3\x65\x02\x92\xab\x5a\x41\x08\xc3\xaa\x47\x94\x0b";
44     char out[16];
45     const char *p;
46
47     if (gc_md2 (in, inlen, out) != 0)
48       {
49         printf ("gc_md2 call failed\n");
50         return 1;
51       }
52
53     if (memcmp (out, expect, 16) != 0)
54       {
55         size_t i;
56         printf ("md2 1 mismatch. expected:\n");
57         for (i = 0; i < 16; i++)
58           printf ("%02x ", expect[i] & 0xFF);
59         printf ("\ncomputed:\n");
60         for (i = 0; i < 16; i++)
61           printf ("%02x ", out[i] & 0xFF);
62         printf ("\n");
63         return 1;
64       }
65
66     if (gc_hash_buffer (GC_MD2, in, inlen, out) != 0)
67       {
68         printf ("gc_hash_buffer(MD2) call failed\n");
69         return 1;
70       }
71
72     if (memcmp (out, expect, 16) != 0)
73       {
74         size_t i;
75         printf ("md2 2 mismatch. expected:\n");
76         for (i = 0; i < 16; i++)
77           printf ("%02x ", expect[i] & 0xFF);
78         printf ("\ncomputed:\n");
79         for (i = 0; i < 16; i++)
80           printf ("%02x ", out[i] & 0xFF);
81         printf ("\n");
82         return 1;
83       }
84
85     if (gc_hash_digest_length (GC_MD2) != 16)
86       {
87         printf ("gc_hash_digest_length (GC_MD2) failed\n");
88         return 1;
89       }
90
91     if ((rc = gc_hash_open (GC_MD2, 0, &h)) != GC_OK)
92       {
93         printf ("gc_hash_open(GC_MD2) failed (%d)\n", rc);
94         return 1;
95       }
96
97     gc_hash_write (h, inlen, in);
98
99     p = gc_hash_read (h);
100
101     if (!p)
102       {
103         printf ("gc_hash_read failed\n");
104         return 1;
105       }
106
107     if (memcmp (p, expect, 16) != 0)
108         {
109         size_t i;
110         printf ("md2 3 mismatch. expected:\n");
111         for (i = 0; i < 16; i++)
112           printf ("%02x ", expect[i] & 0xFF);
113         printf ("\ncomputed:\n");
114         for (i = 0; i < 16; i++)
115           printf ("%02x ", p[i] & 0xFF);
116         printf ("\n");
117         return 1;
118       }
119
120     gc_hash_close (h);
121   }
122
123   gc_done ();
124
125   return 0;
126 }