aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-service-gns_resolver.h
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-service-gns_resolver.h
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-service-gns_resolver.h')
-rw-r--r--src/gns/gnunet-service-gns_resolver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gns/gnunet-service-gns_resolver.h b/src/gns/gnunet-service-gns_resolver.h
index e9916c778..06273766a 100644
--- a/src/gns/gnunet-service-gns_resolver.h
+++ b/src/gns/gnunet-service-gns_resolver.h
@@ -83,10 +83,10 @@ typedef void (*GNS_ResultProcessor)(void *cls,
83 * @return handle to cancel operation 83 * @return handle to cancel operation
84 */ 84 */
85struct GNS_ResolverHandle * 85struct GNS_ResolverHandle *
86GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicSignKey *zone, 86GNS_resolver_lookup (const struct GNUNET_CRYPTO_EcdsaPublicKey *zone,
87 uint32_t record_type, 87 uint32_t record_type,
88 const char *name, 88 const char *name,
89 const struct GNUNET_CRYPTO_EccPrivateKey *shorten_key, 89 const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_key,
90 int only_cached, 90 int only_cached,
91 GNS_ResultProcessor proc, 91 GNS_ResultProcessor proc,
92 void *proc_cls); 92 void *proc_cls);