aboutsummaryrefslogtreecommitdiff
path: root/src/common/crypto.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-04-23 09:16:42 -0400
committerNick Mathewson <nickm@torproject.org>2015-04-23 09:16:42 -0400
commit241e6b093730106978ceef5b500c7049b9846084 (patch)
tree2f3ada40c5da0dc23530a223f34cc5a624556d5a /src/common/crypto.h
parent647b7d37c2b3de4a837d0a4bf810c0132624c15d (diff)
downloadtor-241e6b093730106978ceef5b500c7049b9846084.tar.gz
tor-241e6b093730106978ceef5b500c7049b9846084.zip
Fix some conversion problems
Diffstat (limited to 'src/common/crypto.h')
-rw-r--r--src/common/crypto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/crypto.h b/src/common/crypto.h
index aa587fd08b..1ac02ea7a5 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -255,6 +255,8 @@ MOCK_DECL(int,crypto_rand,(char *to, size_t n));
int crypto_strongest_rand(uint8_t *out, size_t out_len);
int crypto_rand_int(unsigned int max);
int crypto_rand_int_range(unsigned int min, unsigned int max);
+uint64_t crypto_rand_uint64_range(uint64_t min, uint64_t max);
+time_t crypto_rand_time_range(time_t min, time_t max);
uint64_t crypto_rand_uint64(uint64_t max);
double crypto_rand_double(void);
struct tor_weak_rng_t;