Fix typos in comment, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
[gnulib.git] / tests / test-gc-hmac-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
33   rc = gc_init ();
34   if (rc != GC_OK)
35     {
36       printf ("gc_init() failed\n");
37       return 1;
38     }
39
40   {
41     char *key =
42       "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
43     size_t key_len = 16;
44     char *data = "Hi There";
45     size_t data_len = 8;
46     char *digest =
47       "\x67\x5b\x0b\x3a\x1b\x4d\xdf\x4e\x12\x48"
48       "\x72\xda\x6c\x2f\x63\x2b\xfe\xd9\x57\xe9";
49     char out[GC_SHA1_DIGEST_SIZE];
50
51     if (gc_hmac_sha1 (key, key_len, data, data_len, out) != 0)
52       {
53         printf ("call failure\n");
54         return 1;
55       }
56
57     if (memcmp (digest, out, GC_SHA1_DIGEST_SIZE) != 0)
58       {
59         size_t i;
60         printf ("hash 1 mismatch. expected:\n");
61         for (i = 0; i < 16; i++)
62           printf ("%02x ", digest[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
71   gc_done ();
72
73   return 0;
74 }