The test now works.
[gnutls.git] / tests / netconf-psk.c
blob4674283af49d921abe1a7b81d20a2d0f9e996bfa
1 /*
2 * Copyright (C) 2008 Free Software Foundation
4 * Author: Simon Josefsson
6 * This file is part of GNUTLS.
8 * GNUTLS is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * GNUTLS is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with GNUTLS; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 #if HAVE_CONFIG_H
24 # include <config.h>
25 #endif
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <unistd.h>
33 #include <gnutls/gnutls.h>
35 #include "utils.h"
37 void
38 doit (void)
40 const char *known =
41 "\x88\xf3\x82\x4b\x3e\x56\x59\xf5\x2d\x00"
42 "\xe9\x59\xba\xca\xb9\x54\xb6\x54\x03\x44";
43 gnutls_datum_t key = { NULL, 0 };
45 gnutls_global_init ();
47 if (gnutls_psk_netconf_derive_key ("password", "psk_identity",
48 "psk_identity_hint", &key) == 0)
49 success ("success: gnutls_psk_netconf_derive_key\n");
50 else
51 fail ("gnutls_psk_netconf_derive_key failure\n");
53 if (debug)
54 hexprint (key.data, key.size);
56 if (key.size == 20 && memcmp (key.data, known, 20) == 0)
57 success ("success: match.\n");
58 else
59 fail ("FAIL: key differ.\n");
61 gnutls_free (key.data);
63 gnutls_global_deinit ();