663814d47450e3ce92a30f9c048966567de92a1b
[gnulib.git] / tests / test-hmac-sha1.c
1 /*
2  * Copyright (C) 2005 Free Software Foundation
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.  */
18
19 /* Written by Simon Josefsson.  */
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <stdio.h>
26 #include <string.h>
27 #include "hmac.h"
28
29 int
30 main (int argc, char *argv[])
31 {
32   {
33     char *key =
34       "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
35     size_t key_len = 16;
36     char *data = "Hi There";
37     size_t data_len = 8;
38     char *digest =
39       "\x67\x5b\x0b\x3a\x1b\x4d\xdf\x4e\x12\x48\x72\xda\x6c\x2f\x63\x2b\xfe\xd9\x57\xe9";
40     char out[20];
41
42     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
43       {
44         printf ("call failure\n");
45         return 1;
46       }
47
48     if (memcmp (digest, out, 20) != 0)
49       {
50         size_t i;
51         printf ("hash 1 missmatch. expected:\n");
52         for (i = 0; i < 20; i++)
53           printf ("%02x ", digest[i] & 0xFF);
54         printf ("\ncomputed:\n");
55         for (i = 0; i < 20; i++)
56           printf ("%02x ", out[i] & 0xFF);
57         printf ("\n");
58         return 1;
59       }
60   }
61
62   {
63     char *key = "Jefe";
64     size_t key_len = 4;
65     char *data = "what do ya want for nothing?";
66     size_t data_len = 28;
67     char *digest =
68       "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79";
69     char out[20];
70
71     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
72       {
73         printf ("call failure\n");
74         return 1;
75       }
76
77     if (memcmp (digest, out, 20) != 0)
78       {
79         size_t i;
80         printf ("hash 2 missmatch. expected:\n");
81         for (i = 0; i < 20; i++)
82           printf ("%02x ", digest[i] & 0xFF);
83         printf ("\ncomputed:\n");
84         for (i = 0; i < 20; i++)
85           printf ("%02x ", out[i] & 0xFF);
86         printf ("\n");
87         return 1;
88       }
89   }
90
91   {
92     char *key =
93       "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
94     size_t key_len = 16;
95     char *data = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
96       "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
97       "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
98       "\xDD\xDD";
99     size_t data_len = 50;
100     char *digest =
101       "\xd7\x30\x59\x4d\x16\x7e\x35\xd5\x95\x6f\xd8\x00\x3d\x0d\xb3\xd3\xf4\x6d\xc7\xbb";
102     char out[20];
103
104     if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
105       {
106         printf ("call failure\n");
107         return 1;
108       }
109
110     if (memcmp (digest, out, 20) != 0)
111       {
112         size_t i;
113         printf ("hash 3 missmatch. expected:\n");
114         for (i = 0; i < 20; i++)
115           printf ("%02x ", digest[i] & 0xFF);
116         printf ("\ncomputed:\n");
117         for (i = 0; i < 20; i++)
118           printf ("%02x ", out[i] & 0xFF);
119         printf ("\n");
120         return 1;
121       }
122   }
123
124   return 0;
125 }