aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_crypto_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-21 15:16:58 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-21 15:16:58 +0000
commit5a38c8f0d1826ea964e3e3452e1a3a2a24d7d35b (patch)
tree7ba261fc1882bcfa6dc0da916272a0ed0d17468e /src/include/gnunet_crypto_lib.h
parent1fca0c918c8468ba16666e8a1c41526cacdc6df2 (diff)
downloadgnunet-5a38c8f0d1826ea964e3e3452e1a3a2a24d7d35b.tar.gz
gnunet-5a38c8f0d1826ea964e3e3452e1a3a2a24d7d35b.zip
-misc doxygen fixes
Diffstat (limited to 'src/include/gnunet_crypto_lib.h')
-rw-r--r--src/include/gnunet_crypto_lib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 7fb3d2ac9..4133360a2 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -55,23 +55,27 @@ extern "C"
55 55
56 56
57/** 57/**
58 * Desired quality level for cryptographic operations. 58 * Desired quality level for random numbers.
59 * @ingroup crypto
59 */ 60 */
60enum GNUNET_CRYPTO_Quality 61enum GNUNET_CRYPTO_Quality
61{ 62{
62 /** 63 /**
63 * No good quality of the operation is needed (i.e., 64 * No good quality of the operation is needed (i.e.,
64 * random numbers can be pseudo-random). 65 * random numbers can be pseudo-random).
66 * @ingroup crypto
65 */ 67 */
66 GNUNET_CRYPTO_QUALITY_WEAK, 68 GNUNET_CRYPTO_QUALITY_WEAK,
67 69
68 /** 70 /**
69 * High-quality operations are desired. 71 * High-quality operations are desired.
72 * @ingroup crypto
70 */ 73 */
71 GNUNET_CRYPTO_QUALITY_STRONG, 74 GNUNET_CRYPTO_QUALITY_STRONG,
72 75
73 /** 76 /**
74 * Randomness for IVs etc. is required. 77 * Randomness for IVs etc. is required.
78 * @ingroup crypto
75 */ 79 */
76 GNUNET_CRYPTO_QUALITY_NONCE 80 GNUNET_CRYPTO_QUALITY_NONCE
77}; 81};