aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_zone_to_name.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-03-08 17:26:46 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-03-08 17:26:46 +0000
commit59c5988e74fdaeb193d3daa2dee12b620c7eee75 (patch)
tree33dbb4f1e357fec076d278fdcf6d7b7f9ae182c8 /src/namestore/test_namestore_api_zone_to_name.c
parent5b0d869b093391f8979475f00e21cc28e43f107c (diff)
downloadgnunet-59c5988e74fdaeb193d3daa2dee12b620c7eee75.tar.gz
gnunet-59c5988e74fdaeb193d3daa2dee12b620c7eee75.zip
namestore manages zonekey files with private keys
Diffstat (limited to 'src/namestore/test_namestore_api_zone_to_name.c')
-rw-r--r--src/namestore/test_namestore_api_zone_to_name.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/namestore/test_namestore_api_zone_to_name.c b/src/namestore/test_namestore_api_zone_to_name.c
index 0ed3b63c2..498b1197d 100644
--- a/src/namestore/test_namestore_api_zone_to_name.c
+++ b/src/namestore/test_namestore_api_zone_to_name.c
@@ -220,7 +220,11 @@ run (void *cls, char *const *args, const char *cfgfile,
220 220
221 221
222 /* load privat key */ 222 /* load privat key */
223 privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey"); 223 char *hostkey_file;
224 GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR, "4UCICULTINKC87UO4326KEEDQ9MTEP2AJT88MJFVGTGNK12QNGMQI2S41VI07UUU6EO19BTB06PDL0HE6VP1OM50HOJEI75RHP4JP80.zone");
225 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
226 privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
227 GNUNET_free (hostkey_file);
224 GNUNET_assert (privkey != NULL); 228 GNUNET_assert (privkey != NULL);
225 /* get public key */ 229 /* get public key */
226 GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey); 230 GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);