aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-11-03 23:25:33 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-11-03 23:25:33 +0000
commit0979b2d5ecc6099eb89602fe173e507ca1cdb7ee (patch)
treea28bbd8496252f94b5d4960bfb39817e3da9f81d /src/include
parent60d7ead745d3f3dec3fa7cc317a2656220d437b7 (diff)
downloadgnunet-0979b2d5ecc6099eb89602fe173e507ca1cdb7ee.tar.gz
gnunet-0979b2d5ecc6099eb89602fe173e507ca1cdb7ee.zip
clarifications
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_secretsharing_service.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/gnunet_secretsharing_service.h b/src/include/gnunet_secretsharing_service.h
index 80af5430e..8006ba293 100644
--- a/src/include/gnunet_secretsharing_service.h
+++ b/src/include/gnunet_secretsharing_service.h
@@ -97,7 +97,11 @@ struct GNUNET_SECRETSHARING_Ciphertext
97 97
98 98
99/** 99/**
100 * Called once the secret has been established. 100 * Called once the secret has been established with all peers, or the deadline is due.
101 *
102 * Note that the number of peers can be smaller that 'k' (this threshold parameter), which
103 * makes the threshold crypto system useledd. However, in this case one can still determine which peers
104 * were able to participate in the secret sharing successfully.
101 * 105 *
102 * @param cls closure 106 * @param cls closure
103 * @param public_key public key of the session 107 * @param public_key public key of the session
@@ -186,6 +190,8 @@ GNUNET_SECRETSHARING_publish_decrypt (struct GNUNET_SECRETSHARING_Session *sessi
186 * 190 *
187 * The decrypt_cb is not called anymore, but the calling 191 * The decrypt_cb is not called anymore, but the calling
188 * peer may already have irrevocably contributed his share for the decryption of the value. 192 * peer may already have irrevocably contributed his share for the decryption of the value.
193 *
194 * @param decryption_handle decryption to cancel
189 */ 195 */
190void 196void
191GNUNET_SECRETSHARING_cancel_decrypt (struct GNUNET_SECRETSHARING_DecryptionHandle *decryption_handle); 197GNUNET_SECRETSHARING_cancel_decrypt (struct GNUNET_SECRETSHARING_DecryptionHandle *decryption_handle);