aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_identity_service.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-15 17:43:29 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-10-15 17:43:29 +0200
commitffd4382a73e2fa1d99812df14ed1025fadeb4017 (patch)
tree25dd9de304d385a172569baba5be482bb84b6371 /src/include/gnunet_identity_service.h
parente57ffbb53604b5a9606301589c0644a2b1383467 (diff)
downloadgnunet-ffd4382a73e2fa1d99812df14ed1025fadeb4017.tar.gz
gnunet-ffd4382a73e2fa1d99812df14ed1025fadeb4017.zip
-documentation on new api
Diffstat (limited to 'src/include/gnunet_identity_service.h')
-rw-r--r--src/include/gnunet_identity_service.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index c72e6d146..3352d9bc0 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -363,27 +363,80 @@ GNUNET_IDENTITY_delete (struct GNUNET_IDENTITY_Handle *id,
363void 363void
364GNUNET_IDENTITY_cancel (struct GNUNET_IDENTITY_Operation *op); 364GNUNET_IDENTITY_cancel (struct GNUNET_IDENTITY_Operation *op);
365 365
366
367/**
368 * Get the compacted length of a #GNUNET_IDENTITY_PublicKey.
369 * Compacted means that it returns the minimum number of bytes this
370 * key is long, as opposed to the union structure inside
371 * #GNUNET_IDENTITY_PublicKey.
372 * Useful for compact serializations.
373 *
374 * @param key the key.
375 * @return -1 on error, else the compacted length of the key.
376 */
366ssize_t 377ssize_t
367GNUNET_IDENTITY_key_get_length (const struct GNUNET_IDENTITY_PublicKey *key); 378GNUNET_IDENTITY_key_get_length (const struct GNUNET_IDENTITY_PublicKey *key);
368 379
380
381/**
382 * Creates a (Base32) string representation of the public key.
383 * The resulting string encodes a compacted representation of the key.
384 * See also #GNUNET_IDENTITY_key_get_length.
385 *
386 * @param key the key.
387 * @return the string representation of the key, or NULL on error.
388 */
369char * 389char *
370GNUNET_IDENTITY_public_key_to_string (const struct 390GNUNET_IDENTITY_public_key_to_string (const struct
371 GNUNET_IDENTITY_PublicKey *key); 391 GNUNET_IDENTITY_PublicKey *key);
372 392
373 393
394/**
395 * Creates a (Base32) string representation of the private key.
396 * The resulting string encodes a compacted representation of the key.
397 * See also #GNUNET_IDENTITY_key_get_length.
398 *
399 * @param key the key.
400 * @return the string representation of the key, or NULL on error.
401 */
374char * 402char *
375GNUNET_IDENTITY_private_key_to_string (const struct 403GNUNET_IDENTITY_private_key_to_string (const struct
376 GNUNET_IDENTITY_PrivateKey *key); 404 GNUNET_IDENTITY_PrivateKey *key);
377 405
378 406
407/**
408 * Parses a (Base32) string representation of the public key.
409 * See also #GNUNET_IDENTITY_public_key_to_string.
410 *
411 * @param str the encoded key.
412 * @param key where to write the key.
413 * @return GNUNET_SYSERR on error.
414 */
379enum GNUNET_GenericReturnValue 415enum GNUNET_GenericReturnValue
380GNUNET_IDENTITY_public_key_from_string (const char*str, 416GNUNET_IDENTITY_public_key_from_string (const char*str,
381 struct GNUNET_IDENTITY_PublicKey *key); 417 struct GNUNET_IDENTITY_PublicKey *key);
382 418
419
420/**
421 * Parses a (Base32) string representation of the private key.
422 * See also #GNUNET_IDENTITY_private_key_to_string.
423 *
424 * @param str the encoded key.
425 * @param key where to write the key.
426 * @return GNUNET_SYSERR on error.
427 */
383enum GNUNET_GenericReturnValue 428enum GNUNET_GenericReturnValue
384GNUNET_IDENTITY_private_key_from_string (const char*str, 429GNUNET_IDENTITY_private_key_from_string (const char*str,
385 struct GNUNET_IDENTITY_PrivateKey *key); 430 struct GNUNET_IDENTITY_PrivateKey *key);
386 431
432
433/**
434 * Retrieves the public key representation of a private key.
435 *
436 * @param privkey the private key.
437 * @param key the public key result.
438 * @return GNUNET_SYSERR on error.
439 */
387enum GNUNET_GenericReturnValue 440enum GNUNET_GenericReturnValue
388GNUNET_IDENTITY_key_get_public (const struct GNUNET_IDENTITY_PrivateKey *privkey, 441GNUNET_IDENTITY_key_get_public (const struct GNUNET_IDENTITY_PrivateKey *privkey,
389 struct GNUNET_IDENTITY_PublicKey *key); 442 struct GNUNET_IDENTITY_PublicKey *key);