1abc559bdc86a77f6c7d589e73de18acfbfea4cb
[gnulib.git] / tests / test-gc-hmac-md5.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     /* Test vectors from RFC 2104. */
41
42   {
43     char *key =
44       "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
45     size_t key_len = 16;
46     char *data = "Hi There";
47     size_t data_len = 8;
48     char *digest =
49       "\x92\x94\x72\x7a\x36\x38\xbb\x1c\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d";
50     char out[16];
51
52     /*
53       key =         0x0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b
54       key_len =     16 bytes
55       data =        "Hi There"
56       data_len =    8  bytes
57       digest =      0x9294727a3638bb1c13f48ef8158bfc9d
58     */
59
60     if (gc_hmac_md5 (key, key_len, data, data_len, out) != 0)
61       {
62         printf ("call failure\n");
63         return 1;
64       }
65
66     if (memcmp (digest, out, 16) != 0)
67       {
68         size_t i;
69         printf ("hash 1 missmatch. expected:\n");
70         for (i = 0; i < 16; i++)
71           printf ("%02x ", digest[i] & 0xFF);
72         printf ("\ncomputed:\n");
73         for (i = 0; i < 16; i++)
74           printf ("%02x ", out[i] & 0xFF);
75         printf ("\n");
76         return 1;
77       }
78   }
79
80   gc_done ();
81
82   return 0;
83 }