aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-05-25 21:38:58 +0200
committerjospaeth <spaethj@in.tum.de>2020-05-25 21:38:58 +0200
commita32de45ceffeb69038ecfa7b963f30b7fed83a41 (patch)
tree76a39adcf7163c71e470b7c5bf4357dd5471cf9c /src/include
parent19cd0e6d0eca5192a9c8f4f005abd85d531949f1 (diff)
downloadgnunet-a32de45ceffeb69038ecfa7b963f30b7fed83a41.tar.gz
gnunet-a32de45ceffeb69038ecfa7b963f30b7fed83a41.zip
add option to create identity from private keyspaeth/import_identity
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_identity_service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index 81af671e2..f4e653598 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -233,6 +233,7 @@ typedef void
233 * 233 *
234 * @param id identity service to use 234 * @param id identity service to use
235 * @param name desired name 235 * @param name desired name
236 * @param privkey desired private key or NULL to create one
236 * @param cont function to call with the result (will only be called once) 237 * @param cont function to call with the result (will only be called once)
237 * @param cont_cls closure for @a cont 238 * @param cont_cls closure for @a cont
238 * @return handle to abort the operation 239 * @return handle to abort the operation
@@ -240,6 +241,7 @@ typedef void
240struct GNUNET_IDENTITY_Operation * 241struct GNUNET_IDENTITY_Operation *
241GNUNET_IDENTITY_create (struct GNUNET_IDENTITY_Handle *id, 242GNUNET_IDENTITY_create (struct GNUNET_IDENTITY_Handle *id,
242 const char *name, 243 const char *name,
244 const struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey,
243 GNUNET_IDENTITY_CreateContinuation cont, 245 GNUNET_IDENTITY_CreateContinuation cont,
244 void *cont_cls); 246 void *cont_cls);
245 247