aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_crypto_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-28 20:52:20 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-28 20:52:20 +0000
commitf4c9c6514494547973b8962f22fce8266afd4992 (patch)
tree2211f91a0e80f143cb066ca365c6ddcbb02759cf /src/include/gnunet_crypto_lib.h
parent264c9b7f668d0429eaae01075c742ae6ad6f49ee (diff)
downloadgnunet-f4c9c6514494547973b8962f22fce8266afd4992.tar.gz
gnunet-f4c9c6514494547973b8962f22fce8266afd4992.zip
-fixing misc issues and bugs, including better termination logic for intersection and salt handling
Diffstat (limited to 'src/include/gnunet_crypto_lib.h')
-rw-r--r--src/include/gnunet_crypto_lib.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 0d18e1185..0710815b5 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -743,8 +743,9 @@ GNUNET_CRYPTO_hash_sum (const struct GNUNET_HashCode *a,
743 * @param result set to @a a ^ @a b 743 * @param result set to @a a ^ @a b
744 */ 744 */
745void 745void
746GNUNET_CRYPTO_hash_xor (const struct GNUNET_HashCode * a, const struct GNUNET_HashCode * b, 746GNUNET_CRYPTO_hash_xor (const struct GNUNET_HashCode *a,
747 struct GNUNET_HashCode * result); 747 const struct GNUNET_HashCode *b,
748 struct GNUNET_HashCode *result);
748 749
749 750
750/** 751/**