aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_crypto_ecdh_eddsa.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2015-03-18 23:45:34 +0000
committerBart Polot <bart@net.in.tum.de>2015-03-18 23:45:34 +0000
commitd86130ceeb0e9f7ef7adf192b8f44bf94398b466 (patch)
tree9ee500d5d49088521c2f7944370cb51be593a503 /src/util/test_crypto_ecdh_eddsa.c
parent4113d91f65af66d7ff0cb99ce0a58809a7d9734a (diff)
downloadgnunet-d86130ceeb0e9f7ef7adf192b8f44bf94398b466.tar.gz
gnunet-d86130ceeb0e9f7ef7adf192b8f44bf94398b466.zip
- added test for EC-DH with Peer IDs
Diffstat (limited to 'src/util/test_crypto_ecdh_eddsa.c')
-rw-r--r--src/util/test_crypto_ecdh_eddsa.c88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/util/test_crypto_ecdh_eddsa.c b/src/util/test_crypto_ecdh_eddsa.c
new file mode 100644
index 000000000..d8fee849e
--- /dev/null
+++ b/src/util/test_crypto_ecdh_eddsa.c
@@ -0,0 +1,88 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2002-2015 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19
20*/
21/**
22 * @file util/test_crypto_ecdh_ecdsa.c
23 * @brief testcase for ECC DH key exchange with EdDSA private keys.
24 * @author Christian Grothoff, Bart Polot
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include <gcrypt.h>
29
30
31int
32main (int argc, char *argv[])
33{
34 struct GNUNET_CRYPTO_EddsaPrivateKey *priv_dsa1;
35 struct GNUNET_CRYPTO_EddsaPrivateKey *priv_dsa2;
36 struct GNUNET_CRYPTO_EddsaPublicKey id1;
37 struct GNUNET_CRYPTO_EddsaPublicKey id2;
38
39 struct GNUNET_CRYPTO_EcdhePrivateKey *priv1;
40 struct GNUNET_CRYPTO_EcdhePrivateKey *priv2;
41 struct GNUNET_CRYPTO_EcdhePublicKey pub2;
42 struct GNUNET_HashCode dh[3];
43
44 if (! gcry_check_version ("1.6.0"))
45 {
46 FPRINTF (stderr,
47 _
48 ("libgcrypt has not the expected version (version %s is required).\n"),
49 "1.6.0");
50 return 0;
51 }
52 if (getenv ("GNUNET_GCRYPT_DEBUG"))
53 gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u , 0);
54 GNUNET_log_setup ("test-crypto-ecdh-eddsa", "WARNING", NULL);
55
56 /* Generate, cast keys */
57 priv_dsa1 = GNUNET_CRYPTO_eddsa_key_create ();
58 priv_dsa2 = GNUNET_CRYPTO_eddsa_key_create ();
59 priv1 = (struct GNUNET_CRYPTO_EcdhePrivateKey *) priv_dsa1;
60 priv2 = (struct GNUNET_CRYPTO_EcdhePrivateKey *) priv_dsa2;
61
62 /* Extract public keys */
63 GNUNET_CRYPTO_eddsa_key_get_public (priv_dsa1, &id1);
64 GNUNET_CRYPTO_eddsa_key_get_public (priv_dsa2, &id2);
65 GNUNET_CRYPTO_ecdhe_key_get_public (priv2, &pub2);
66
67 /* Do ECDH */
68 GNUNET_CRYPTO_ecc_ecdh (priv1, (struct GNUNET_CRYPTO_EcdhePublicKey *)&id2, &dh[0]);
69 GNUNET_CRYPTO_ecc_ecdh (priv2, (struct GNUNET_CRYPTO_EcdhePublicKey *)&id1, &dh[1]);
70 GNUNET_CRYPTO_ecc_ecdh (priv1, &pub2, &dh[2]);
71
72 /* Check that both DH results are equal. */
73 GNUNET_assert (0 == memcmp (&dh[0], &dh[1],
74 sizeof (struct GNUNET_HashCode)));
75
76 /* FIXME: Maybe it should be the same as with ECDHE. */
77 // GNUNET_assert (0 == memcmp (&dh[1], &dh[2],
78 // sizeof (struct GNUNET_HashCode)));
79 // GNUNET_assert (0 == memcmp (&id1, &pub1,
80 // sizeof (struct GNUNET_CRYPTO_EcdhePublicKey)));
81
82 /* Free */
83 GNUNET_free (priv1);
84 GNUNET_free (priv2);
85 return 0;
86}
87
88/* end of test_crypto_ecdh_ecdsa.c */