aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_revocation_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-30 19:02:32 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-30 19:02:32 +0000
commit6ea60b3c0f51e600f2d3d9be5d4eaa6eb424c538 (patch)
treec2319d6db715df848d548f01a4ff1f937c03b2e9 /src/include/gnunet_revocation_service.h
parent14dc1d94810a77ed35ce9e8d7090c8a489707351 (diff)
downloadgnunet-6ea60b3c0f51e600f2d3d9be5d4eaa6eb424c538.tar.gz
gnunet-6ea60b3c0f51e600f2d3d9be5d4eaa6eb424c538.zip
-doxygen, todos, minor code cleanup
Diffstat (limited to 'src/include/gnunet_revocation_service.h')
-rw-r--r--src/include/gnunet_revocation_service.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gnunet_revocation_service.h b/src/include/gnunet_revocation_service.h
index 7176abb7a..0cbe0ea14 100644
--- a/src/include/gnunet_revocation_service.h
+++ b/src/include/gnunet_revocation_service.h
@@ -129,11 +129,13 @@ GNUNET_REVOCATION_revoke_cancel (struct GNUNET_REVOCATION_Handle *h);
129 * 129 *
130 * @param key key to check for 130 * @param key key to check for
131 * @param pow proof of work value 131 * @param pow proof of work value
132 * @param matching_bits how many bits must match (configuration)
132 * @return #GNUNET_YES if the @a pow is acceptable, #GNUNET_NO if not 133 * @return #GNUNET_YES if the @a pow is acceptable, #GNUNET_NO if not
133 */ 134 */
134int 135int
135GNUNET_REVOCATION_check_pow (const struct GNUNET_CRYPTO_EccPublicSignKey *key, 136GNUNET_REVOCATION_check_pow (const struct GNUNET_CRYPTO_EccPublicSignKey *key,
136 uint64_t pow); 137 uint64_t pow,
138 unsigned int matching_bits);
137 139
138 140
139/** 141/**