aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-proxy.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-10 14:38:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-10 14:38:55 +0000
commit9351b1e9bdf2b067b6db06562c26ba658cff42b8 (patch)
tree68dc4ab447e7e8b6a20a706858cd36238c1c7c5f /src/gns/gnunet-gns-proxy.c
parent8beabcd96c0cf1e1873c0b5ff96e537f1beb0b34 (diff)
downloadgnunet-9351b1e9bdf2b067b6db06562c26ba658cff42b8.tar.gz
gnunet-9351b1e9bdf2b067b6db06562c26ba658cff42b8.zip
separating ECC crypto into functions/structs for ECDHE, ECDSA and EDDSA
Diffstat (limited to 'src/gns/gnunet-gns-proxy.c')
-rw-r--r--src/gns/gnunet-gns-proxy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c
index a67f7356e..276ea70b0 100644
--- a/src/gns/gnunet-gns-proxy.c
+++ b/src/gns/gnunet-gns-proxy.c
@@ -623,12 +623,12 @@ static struct Socks5Request *s5r_tail;
623/** 623/**
624 * The users local GNS master zone 624 * The users local GNS master zone
625 */ 625 */
626static struct GNUNET_CRYPTO_EccPublicSignKey local_gns_zone; 626static struct GNUNET_CRYPTO_EcdsaPublicKey local_gns_zone;
627 627
628/** 628/**
629 * The users local shorten zone 629 * The users local shorten zone
630 */ 630 */
631static struct GNUNET_CRYPTO_EccPrivateKey local_shorten_zone; 631static struct GNUNET_CRYPTO_EcdsaPrivateKey local_shorten_zone;
632 632
633/** 633/**
634 * Is shortening enabled? 634 * Is shortening enabled?
@@ -2864,7 +2864,7 @@ main (int argc, char *const *argv)
2864 &run, NULL)) ? 0 : 1; 2864 &run, NULL)) ? 0 : 1;
2865 MHD_destroy_response (curl_failure_response); 2865 MHD_destroy_response (curl_failure_response);
2866 GNUNET_free_non_null ((char *) argv); 2866 GNUNET_free_non_null ((char *) argv);
2867 GNUNET_CRYPTO_ecc_key_clear (&local_shorten_zone); 2867 GNUNET_CRYPTO_ecdsa_key_clear (&local_shorten_zone);
2868 return ret; 2868 return ret;
2869} 2869}
2870 2870