aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_secretsharing_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_secretsharing_service.h')
-rw-r--r--src/include/gnunet_secretsharing_service.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/gnunet_secretsharing_service.h b/src/include/gnunet_secretsharing_service.h
index 8006ba293..80ec8f2e8 100644
--- a/src/include/gnunet_secretsharing_service.h
+++ b/src/include/gnunet_secretsharing_service.h
@@ -116,6 +116,16 @@ typedef void (*GNUNET_SECRETSHARING_SecretReadyCallback) (void *cls,
116 116
117 117
118/** 118/**
119 * Called when a decryption has succeeded.
120 *
121 * @param cls closure
122 * @param result decrypted value
123 */
124typedef void (*GNUNET_SECRETSHARING_DecryptCallback) (void *cls,
125 gcry_mpi_t result);
126
127
128/**
119 * Create a session that will eventually establish a shared secret 129 * Create a session that will eventually establish a shared secret
120 * with the other peers. 130 * with the other peers.
121 * 131 *