Test more.
[gnulib.git] / tests / test-gc-sha1.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   {
42     char *in = "abcdefgh";
43     size_t inlen = strlen (in);
44     char *expect = "\x42\x5a\xf1\x2a\x07\x43\x50\x2b"
45       "\x32\x2e\x93\xa0\x15\xbc\xf8\x68\xe3\x24\xd5\x6a";
46     char out[20];
47     const char *p;
48
49     if (gc_sha1 (in, inlen, out) != 0)
50       {
51         printf ("gc_sha1 call failed\n");
52         return 1;
53       }
54
55     if (memcmp (out, expect, 20) != 0)
56       {
57         size_t i;
58         printf ("sha1 missmatch. 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     rc = gc_hash_buffer (GC_SHA1, "abcdefgh", 8, out);
69     if (rc != GC_OK)
70       {
71         printf ("gc_hash_buffer(sha1) call failed: %d\n", rc);
72         return 1;
73       }
74
75     if (memcmp (out, expect, 20) != 0)
76       {
77         size_t i;
78         printf ("sha1' missmatch. 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);
84         printf ("\n");
85         return 1;
86       }
87
88     if (gc_hash_digest_length (GC_SHA1) != 20)
89       {
90         printf ("gc_hash_digest_length (GC_SHA1) failed\n");
91         return 1;
92       }
93
94     if ((rc = gc_hash_open (GC_SHA1, 0, &h)) != GC_OK)
95       {
96         printf ("gc_hash_open(GC_SHA1) failed (%d)\n", rc);
97         return 1;
98       }
99
100     gc_hash_write (h, inlen, in);
101
102     p = gc_hash_read (h);
103
104     if (!p)
105       {
106         printf ("gc_hash_read failed\n");
107         return 1;
108       }
109
110     if (memcmp (p, expect, 20) != 0)
111       {
112         size_t i;
113         printf ("sha1 1 missmatch. expected:\n");
114         for (i = 0; i < 20; i++)
115           printf ("%02x ", expect[i] & 0xFF);
116         printf ("\ncomputed:\n");
117         for (i = 0; i < 20; i++)
118           printf ("%02x ", p[i] & 0xFF);
119         printf ("\n");
120         return 1;
121       }
122
123     gc_hash_close (h);
124   }
125
126   gc_done ();
127
128   return 0;
129 }