2 * Copyright (C) 2005, 2010-2020 Free Software Foundation, Inc.
3 * Written by Simon Josefsson
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 3, or (at your option)
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <https://www.gnu.org/licenses/>. */
26 main (int argc
, char *argv
[])
33 printf ("gc_init() failed\n");
37 /* Test vectors from RFC 2104. */
41 "\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b\x0b";
43 char *data
= "Hi There";
46 "\x92\x94\x72\x7a\x36\x38\xbb\x1c\x13\xf4\x8e\xf8\x15\x8b\xfc\x9d";
50 key = 0x0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b
54 digest = 0x9294727a3638bb1c13f48ef8158bfc9d
57 if (gc_hmac_md5 (key
, key_len
, data
, data_len
, out
) != 0)
59 printf ("call failure\n");
63 if (memcmp (digest
, out
, 16) != 0)
66 printf ("hash 1 mismatch. expected:\n");
67 for (i
= 0; i
< 16; i
++)
68 printf ("%02x ", digest
[i
] & 0xFF);
69 printf ("\ncomputed:\n");
70 for (i
= 0; i
< 16; i
++)
71 printf ("%02x ", out
[i
] & 0xFF);