-fix (C) notices
[oweals/gnunet.git] / src / util / test_crypto_ecdhe.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2002-2013 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19
20 */
21 /**
22  * @file util/test_crypto_ecdhe.c
23  * @brief testcase for ECC ECDHE public key crypto
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include <gcrypt.h>
29
30
31 int
32 main (int argc, char *argv[])
33 {
34   struct GNUNET_CRYPTO_EcdhePrivateKey *priv1;
35   struct GNUNET_CRYPTO_EcdhePrivateKey *priv2;
36   struct GNUNET_CRYPTO_EcdhePublicKey pub1;
37   struct GNUNET_CRYPTO_EcdhePublicKey pub2;
38   struct GNUNET_HashCode ecdh1;
39   struct GNUNET_HashCode ecdh2;
40
41   if (! gcry_check_version ("1.6.0"))
42   {
43     FPRINTF (stderr,
44              _
45              ("libgcrypt has not the expected version (version %s is required).\n"),
46              "1.6.0");
47     return 0;
48   }
49   if (getenv ("GNUNET_GCRYPT_DEBUG"))
50     gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u , 0);
51   GNUNET_log_setup ("test-crypto-ecdhe", "WARNING", NULL);
52
53   priv1 = GNUNET_CRYPTO_ecdhe_key_create ();
54   priv2 = GNUNET_CRYPTO_ecdhe_key_create ();
55   GNUNET_CRYPTO_ecdhe_key_get_public (priv1, &pub1);
56   GNUNET_CRYPTO_ecdhe_key_get_public (priv2, &pub2);
57   GNUNET_CRYPTO_ecc_ecdh (priv1, &pub2, &ecdh1);
58   GNUNET_CRYPTO_ecc_ecdh (priv2, &pub1, &ecdh2);
59   GNUNET_assert (0 == memcmp (&ecdh1, &ecdh2,
60                               sizeof (struct GNUNET_HashCode)));
61   GNUNET_free (priv1);
62   GNUNET_free (priv2);
63   return 0;
64 }
65
66 /* end of test_crypto_ecdhe.c */