2 * Copyright (C) 2005, 2010-2017 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 <http://www.gnu.org/licenses/>. */
17 /* Written by Simon Josefsson. */
26 main (int argc
, char *argv
[])
30 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
32 char *data
= "Hi There";
35 "\x67\x5b\x0b\x3a\x1b\x4d\xdf\x4e\x12\x48\x72\xda\x6c\x2f\x63\x2b\xfe\xd9\x57\xe9";
38 if (hmac_sha1 (key
, key_len
, data
, data_len
, out
) != 0)
40 printf ("call failure\n");
44 if (memcmp (digest
, out
, 20) != 0)
47 printf ("hash 1 mismatch. expected:\n");
48 for (i
= 0; i
< 20; i
++)
49 printf ("%02x ", digest
[i
] & 0xFF);
50 printf ("\ncomputed:\n");
51 for (i
= 0; i
< 20; i
++)
52 printf ("%02x ", out
[i
] & 0xFF);
61 char *data
= "what do ya want for nothing?";
64 "\xef\xfc\xdf\x6a\xe5\xeb\x2f\xa2\xd2\x74\x16\xd5\xf1\x84\xdf\x9c\x25\x9a\x7c\x79";
67 if (hmac_sha1 (key
, key_len
, data
, data_len
, out
) != 0)
69 printf ("call failure\n");
73 if (memcmp (digest
, out
, 20) != 0)
76 printf ("hash 2 mismatch. expected:\n");
77 for (i
= 0; i
< 20; i
++)
78 printf ("%02x ", digest
[i
] & 0xFF);
79 printf ("\ncomputed:\n");
80 for (i
= 0; i
< 20; i
++)
81 printf ("%02x ", out
[i
] & 0xFF);
89 "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
91 char *data
= "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"
92 "\xDD\xDD\xDD\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"
97 "\xd7\x30\x59\x4d\x16\x7e\x35\xd5\x95\x6f\xd8\x00\x3d\x0d\xb3\xd3\xf4\x6d\xc7\xbb";
100 if (hmac_sha1 (key
, key_len
, data
, data_len
, out
) != 0)
102 printf ("call failure\n");
106 if (memcmp (digest
, out
, 20) != 0)
109 printf ("hash 3 mismatch. expected:\n");
110 for (i
= 0; i
< 20; i
++)
111 printf ("%02x ", digest
[i
] & 0xFF);
112 printf ("\ncomputed:\n");
113 for (i
= 0; i
< 20; i
++)
114 printf ("%02x ", out
[i
] & 0xFF);