aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-11-12 04:12:35 +0000
committerNick Mathewson <nickm@torproject.org>2003-11-12 04:12:35 +0000
commit785f5cdac81c9565c0c584c05da8b69f0e992f44 (patch)
treeb5eb82e10f11a5a9825ee39279e8f76007c9cd56 /src/common
parent99a6d48f62c0a0a6367b196634b8dfba6526cccf (diff)
downloadtor-785f5cdac81c9565c0c584c05da8b69f0e992f44.tar
tor-785f5cdac81c9565c0c584c05da8b69f0e992f44.tar.gz
Make crypto_pseudo_rand* never fail.
svn:r797
Diffstat (limited to 'src/common')
-rw-r--r--src/common/crypto.c17
-rw-r--r--src/common/crypto.h5
2 files changed, 17 insertions, 5 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 8da2916dc..afec91d22 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -999,10 +999,23 @@ int crypto_rand(unsigned int n, unsigned char *to)
return (RAND_bytes(to, n) != 1);
}
-int crypto_pseudo_rand(unsigned int n, unsigned char *to)
+void crypto_pseudo_rand(unsigned int n, unsigned char *to)
{
assert(to);
- return (RAND_pseudo_bytes(to, n) == -1);
+ if (RAND_pseudo_bytes(to, n) == -1) {
+ log_fn(LOG_ERR, "RAND_pseudo_bytes failed unexpectedly.");
+ exit(1);
+ }
+}
+
+int crypto_pseudo_rand_int(int max) {
+ unsigned int val;
+ crypto_pseudo_rand(sizeof(val), (unsigned char*) &val);
+ /* Bug: Low values are _slightly_ favored over high values because
+ * ((unsigned)-1)%max != max-1 . This shouldn't matter if max is
+ * significantly smaller than ((unsigned)-1).
+ **/
+ return val % max;
}
/* errors */
diff --git a/src/common/crypto.h b/src/common/crypto.h
index 31e995d3b..ab5422d8c 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -100,9 +100,8 @@ int crypto_SHA_digest(unsigned char *m, int len, unsigned char *digest);
/* random numbers */
int crypto_seed_rng();
int crypto_rand(unsigned int n, unsigned char *to);
-int crypto_pseudo_rand(unsigned int n, unsigned char *to);
-
-#define CRYPTO_PSEUDO_RAND_INT(v) crypto_pseudo_rand(sizeof(v),(char*)&(v))
+void crypto_pseudo_rand(unsigned int n, unsigned char *to);
+int crypto_pseudo_rand_int(int max);
/* errors */
char *crypto_perror();