use search path
[oweals/gnunet.git] / src / util / crypto_random.c
index 0ad1364cb592cdf6e6426acb79d0eafb52221930..5d85d1daa1376d5b2f96b5f2ba146acd69e8664a 100644 (file)
 #include <gcrypt.h>
 
 /**
+ * Produce a random value.
+ *
+ * @param mode desired quality of the random number
+ * @param i the upper limit (exclusive) for the random number
  * @return a random value in the interval [0,i[.
  */
 uint32_t
-GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode, 
-                         uint32_t i)
+GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode, uint32_t i)
 {
 #ifdef gcry_fast_random_poll
   static unsigned int invokeCount;
@@ -51,8 +54,7 @@ GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode,
         gcry_fast_random_poll ();
 #endif
       gcry_randomize ((unsigned char *) &ret,
-                      sizeof (uint32_t),
-                     GCRY_STRONG_RANDOM);
+                      sizeof (uint32_t), GCRY_STRONG_RANDOM);
       return ret % i;
     }
   else
@@ -97,26 +99,29 @@ GNUNET_CRYPTO_random_permute (enum GNUNET_CRYPTO_Quality mode, unsigned int n)
 
 /**
  * Random on unsigned 64-bit values.
+ *
+ *
+ * @param mode desired quality of the random number
+ * @param max value returned will be in range [0,max) (exclusive)
+ * @return random 64-bit number
  */
 uint64_t
-GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode,
-                          uint64_t u)
+GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode, uint64_t max)
 {
   uint64_t ret;
 
-  GNUNET_assert (u > 0);
+  GNUNET_assert (max > 0);
   if (mode == GNUNET_CRYPTO_QUALITY_STRONG)
     {
       gcry_randomize ((unsigned char *) &ret,
-                      sizeof (uint64_t),
-                     GCRY_STRONG_RANDOM);
-      return ret % u;
+                      sizeof (uint64_t), GCRY_STRONG_RANDOM);
+      return ret % max;
     }
   else
     {
-      ret = u * ((double) RANDOM () / RAND_MAX);
-      if (ret >= u)
-        ret = u - 1;
+      ret = max * ((double) RANDOM () / RAND_MAX);
+      if (ret >= max)
+        ret = max - 1;
       return ret;
     }
 }
@@ -132,5 +137,12 @@ GNUNET_CRYPTO_random_disable_entropy_gathering ()
   gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
 }
 
+/**
+ * Initializer
+ */
+void __attribute__ ((constructor)) GNUNET_util_random_init ()
+{
+  SRANDOM (time (NULL));
+}
 
 /* end of crypto_random.c */