aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_fs_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_fs_service.h')
-rw-r--r--src/include/gnunet_fs_service.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/include/gnunet_fs_service.h b/src/include/gnunet_fs_service.h
index a1e2dca23..afe53b0e0 100644
--- a/src/include/gnunet_fs_service.h
+++ b/src/include/gnunet_fs_service.h
@@ -81,13 +81,9 @@ struct GNUNET_FS_Uri;
81 81
82 82
83/** 83/**
84 * Identifier for a GNUnet pseudonym (the public key). Q-point, Q=dp. 84 * Identifier for a GNUnet pseudonym (the public key). Q-point, Q=dP.
85 * Note that we (ab)use an identifier of 'all zeros' to mean the 85 * Note that we (ab)use an identifier of 'Q=G=1P' to mean the
86 * 'anonymous' pseudonym, where the value is actually the point at 86 * 'anonymous' pseudonym.
87 * infinity; however, that value cannot be represented here. We do
88 * not handle the case where the actual q-Value of some pseudonym
89 * happens to be all zeros as well (as the chance of that is
90 * negligible).
91 */ 87 */
92struct GNUNET_FS_PseudonymIdentifier 88struct GNUNET_FS_PseudonymIdentifier
93{ 89{
@@ -274,7 +270,7 @@ GNUNET_FS_pseudonym_verify (const struct GNUNET_FS_PseudonymSignaturePurpose *pu
274 */ 270 */
275void 271void
276GNUNET_FS_pseudonym_get_identifier (struct GNUNET_FS_PseudonymHandle *ph, 272GNUNET_FS_pseudonym_get_identifier (struct GNUNET_FS_PseudonymHandle *ph,
277 struct GNUNET_FS_PseudonymIdentifier *pseudonym); 273 struct GNUNET_FS_PseudonymIdentifier *pseudonym);
278 274
279 275
280 276
@@ -531,6 +527,7 @@ GNUNET_FS_uri_ksk_remove_keyword (struct GNUNET_FS_Uri *uri,
531struct GNUNET_FS_Uri * 527struct GNUNET_FS_Uri *
532GNUNET_FS_uri_parse (const char *uri, char **emsg); 528GNUNET_FS_uri_parse (const char *uri, char **emsg);
533 529
530
534/** 531/**
535 * Free URI. 532 * Free URI.
536 * 533 *
@@ -2604,8 +2601,9 @@ GNUNET_FS_namespace_open_existing (struct GNUNET_FS_Handle *h, const char *name)
2604 * @return GNUNET_OK on success, GNUNET_SYSERR on error (see errno for details) 2601 * @return GNUNET_OK on success, GNUNET_SYSERR on error (see errno for details)
2605 */ 2602 */
2606int 2603int
2607GNUNET_FS_namespace_rename (struct GNUNET_FS_Handle *h, const char *old_name, 2604GNUNET_FS_namespace_rename (struct GNUNET_FS_Handle *h,
2608 const char *new_name); 2605 const char *old_name,
2606 const char *new_name);
2609 2607
2610 2608
2611/** 2609/**