aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-01-10 10:43:06 +0100
committerChristian Grothoff <christian@grothoff.org>2022-01-10 10:43:06 +0100
commit5982cb44ba9b28751b69a818d32afe2d2b99db1c (patch)
tree31484d4ad1786bced0e446abeae14fde772d90e5 /src/include
parent8f8351c2ddb2c3040195548363161a2a177c7cc0 (diff)
downloadgnunet-5982cb44ba9b28751b69a818d32afe2d2b99db1c.tar.gz
gnunet-5982cb44ba9b28751b69a818d32afe2d2b99db1c.zip
-export routine for path verification (untested)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_dht_service.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/src/include/gnunet_dht_service.h b/src/include/gnunet_dht_service.h
index 7376dd5f4..5c365639a 100644
--- a/src/include/gnunet_dht_service.h
+++ b/src/include/gnunet_dht_service.h
@@ -473,7 +473,7 @@ GNUNET_DHT_monitor_stop (struct GNUNET_DHT_MonitorHandle *handle);
473 * Convert a peer path to a human-readable string. 473 * Convert a peer path to a human-readable string.
474 * 474 *
475 * @param path array of path elements to convert to a string 475 * @param path array of path elements to convert to a string
476 * @param num_pids length of the @a pids array 476 * @param path_len length of the @a path array
477 * @return string representing the array of @a pids 477 * @return string representing the array of @a pids
478 */ 478 */
479char * 479char *
@@ -481,6 +481,33 @@ GNUNET_DHT_pp2s (const struct GNUNET_DHT_PathElement *path,
481 unsigned int path_len); 481 unsigned int path_len);
482 482
483 483
484/**
485 * Verify signatures on a @a path, in reverse order (starting at
486 * the last element of the path). Note that the last signature
487 * on the path is never verified as that is the slot where our
488 * peer (@a me) would need to sign.
489 *
490 * @param key key of the data (not necessarily the query hash)
491 * @param data payload (the block)
492 * @param data_size number of bytes in @a data
493 * @param exp_time expiration time of @a data
494 * @param path array of path elements to verify
495 * @param path_len length of the @a path array
496 * @param me our own peer identity (needed to verify the last element)
497 * @return 0 on success, otherwise the index of
498 * the last path element that succeeded with verification;
499 * @a path_len -1 if no signature was valid
500 */
501unsigned int
502GNUNET_DHT_verify_path (const struct GNUNET_HashCode *key,
503 const void *data,
504 size_t data_size,
505 struct GNUNET_TIME_Absolute exp_time,
506 const struct GNUNET_DHT_PathElement *path,
507 unsigned int path_len,
508 const struct GNUNET_PeerIdentity *me);
509
510
484#if 0 /* keep Emacsens' auto-indent happy */ 511#if 0 /* keep Emacsens' auto-indent happy */
485{ 512{
486#endif 513#endif