af_alg: fix file descriptor leak
[gnulib.git] / tests / test-hmac-sha1.c
blobf0e6690c88a08d80108df1a81572c8b01d63611f
1 /*
2 * Copyright (C) 2005, 2010-2018 Free Software Foundation, Inc.
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 3 of the License, or
7 * (at your option) any later version.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Simon Josefsson. */
19 #include <config.h>
21 #include "hmac.h"
23 #include <stdio.h>
24 #include <string.h>
26 int
27 main (int argc, char *argv[])
30 char *key =
31 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
32 size_t key_len = 16;
33 char *data = "Hi There";
34 size_t data_len = 8;
35 char *digest =
36 "\x67\x5b\x0b\x3a\x1b\x4d\xdf\x4e\x12\x48\x72\xda\x6c\x2f\x63\x2b\xfe\xd9\x57\xe9";
37 char out[20];
39 if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
41 printf ("call failure\n");
42 return 1;
45 if (memcmp (digest, out, 20) != 0)
47 size_t i;
48 printf ("hash 1 mismatch. expected:\n");
49 for (i = 0; i < 20; i++)
50 printf ("%02x ", digest[i] & 0xFF);
51 printf ("\ncomputed:\n");
52 for (i = 0; i < 20; i++)
53 printf ("%02x ", out[i] & 0xFF);
54 printf ("\n");
55 return 1;
60 char *key = "Jefe";
61 size_t key_len = 4;
62 char *data = "what do ya want for nothing?";
63 size_t data_len = 28;
64 char *digest =
65 "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79";
66 char out[20];
68 if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
70 printf ("call failure\n");
71 return 1;
74 if (memcmp (digest, out, 20) != 0)
76 size_t i;
77 printf ("hash 2 mismatch. expected:\n");
78 for (i = 0; i < 20; i++)
79 printf ("%02x ", digest[i] & 0xFF);
80 printf ("\ncomputed:\n");
81 for (i = 0; i < 20; i++)
82 printf ("%02x ", out[i] & 0xFF);
83 printf ("\n");
84 return 1;
89 char *key =
90 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
91 size_t key_len = 16;
92 char *data = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
93 "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
94 "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
95 "\xDD\xDD";
96 size_t data_len = 50;
97 char *digest =
98 "\xd7\x30\x59\x4d\x16\x7e\x35\xd5\x95\x6f\xd8\x00\x3d\x0d\xb3\xd3\xf4\x6d\xc7\xbb";
99 char out[20];
101 if (hmac_sha1 (key, key_len, data, data_len, out) != 0)
103 printf ("call failure\n");
104 return 1;
107 if (memcmp (digest, out, 20) != 0)
109 size_t i;
110 printf ("hash 3 mismatch. expected:\n");
111 for (i = 0; i < 20; i++)
112 printf ("%02x ", digest[i] & 0xFF);
113 printf ("\ncomputed:\n");
114 for (i = 0; i < 20; i++)
115 printf ("%02x ", out[i] & 0xFF);
116 printf ("\n");
117 return 1;
121 return 0;