aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-10-11 14:13:24 +0000
committerLRN <lrn1986@gmail.com>2013-10-11 14:13:24 +0000
commit01521e0e51a35ff1e1b54dc78d643ce8c9042720 (patch)
treece9dd128dd7a80e4341836470748e21aa7aa544a
parentb856ff1a422a7cd3a8cc5f7d595dd8c5b4199984 (diff)
downloadgnunet-01521e0e51a35ff1e1b54dc78d643ce8c9042720.tar.gz
gnunet-01521e0e51a35ff1e1b54dc78d643ce8c9042720.zip
Make it compile again
-rw-r--r--src/include/gnunet_social_service.h6
-rw-r--r--src/psyc/test_psyc.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_social_service.h b/src/include/gnunet_social_service.h
index 88a52b709..b0c7b63cd 100644
--- a/src/include/gnunet_social_service.h
+++ b/src/include/gnunet_social_service.h
@@ -283,7 +283,7 @@ GNUNET_SOCIAL_home_reject_entry (struct GNUNET_SOCIAL_Home *home,
283 */ 283 */
284void 284void
285GNUNET_SOCIAL_nym_get_key (struct GNUNET_SOCIAL_Nym *nym, 285GNUNET_SOCIAL_nym_get_key (struct GNUNET_SOCIAL_Nym *nym,
286 struct GNUNET_CRYPTO_EccPublicSignKey *nym_key); 286 struct GNUNET_CRYPTO_EddsaPublicKey *nym_key);
287 287
288 288
289/** 289/**
@@ -294,7 +294,7 @@ GNUNET_SOCIAL_nym_get_key (struct GNUNET_SOCIAL_Nym *nym,
294 */ 294 */
295void 295void
296GNUNET_SOCIAL_home_get_key (struct GNUNET_SOCIAL_Home *home, 296GNUNET_SOCIAL_home_get_key (struct GNUNET_SOCIAL_Home *home,
297 struct GNUNET_CRYPTO_EccPrivateKey *home_key); 297 struct GNUNET_CRYPTO_EddsaPrivateKey *home_key);
298 298
299 299
300/** 300/**
@@ -440,7 +440,7 @@ GNUNET_SOCIAL_place_enter (const struct GNUNET_CONFIGURATION_Handle *cfg,
440struct GNUNET_SOCIAL_Place * 440struct GNUNET_SOCIAL_Place *
441GNUNET_SOCIAL_place_enter2 (const struct GNUNET_CONFIGURATION_Handle *cfg, 441GNUNET_SOCIAL_place_enter2 (const struct GNUNET_CONFIGURATION_Handle *cfg,
442 struct GNUNET_IDENTITY_Ego *ego, 442 struct GNUNET_IDENTITY_Ego *ego,
443 struct GNUNET_CRYPTO_EccPublicSignKey *crypto_address, 443 struct GNUNET_CRYPTO_EddsaPublicKey *crypto_address,
444 struct GNUNET_PeerIdentity *origin, 444 struct GNUNET_PeerIdentity *origin,
445 size_t relay_count, 445 size_t relay_count,
446 struct GNUNET_PeerIdentity *relays, 446 struct GNUNET_PeerIdentity *relays,
diff --git a/src/psyc/test_psyc.c b/src/psyc/test_psyc.c
index 80497d8ba..41c4ca8e4 100644
--- a/src/psyc/test_psyc.c
+++ b/src/psyc/test_psyc.c
@@ -240,8 +240,8 @@ run (void *cls,
240 cfg = c; 240 cfg = c;
241 end_badly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL); 241 end_badly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
242 242
243 channel_key = GNUNET_CRYPTO_ecc_key_create (); 243 channel_key = GNUNET_CRYPTO_eddsa_key_create ();
244 slave_key = GNUNET_CRYPTO_ecc_key_create (); 244 slave_key = GNUNET_CRYPTO_eddsa_key_create ();
245 245
246 GNUNET_CRYPTO_eddsa_key_get_public (channel_key, &channel_pub_key); 246 GNUNET_CRYPTO_eddsa_key_get_public (channel_key, &channel_pub_key);
247 GNUNET_CRYPTO_eddsa_key_get_public (slave_key, &slave_pub_key); 247 GNUNET_CRYPTO_eddsa_key_get_public (slave_key, &slave_pub_key);