diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-02-06 12:40:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-02-06 22:06:05 -0500 |
commit | a49149fc13e8b81e30df17579f19408ae8f4200f (patch) | |
tree | 35cdb773cd8a3461878a27dc900c79a7db95049f /src/lib/crypt_ops/include.am | |
parent | 21d184a184b2ac4e4b8a1ff9853cb50de31a41fe (diff) | |
download | tor-a49149fc13e8b81e30df17579f19408ae8f4200f.tar.gz tor-a49149fc13e8b81e30df17579f19408ae8f4200f.zip |
Extract numeric CSPRNG functions into a new module.
Some of the code for getting a random value within a range wants to
be shared between crypto_rand() and the new crypto_fast_rng() code.
Diffstat (limited to 'src/lib/crypt_ops/include.am')
-rw-r--r-- | src/lib/crypt_ops/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/crypt_ops/include.am b/src/lib/crypt_ops/include.am index d0ccc13bff..19cfee1355 100644 --- a/src/lib/crypt_ops/include.am +++ b/src/lib/crypt_ops/include.am @@ -17,6 +17,7 @@ src_lib_libtor_crypt_ops_a_SOURCES = \ src/lib/crypt_ops/crypto_ope.c \ src/lib/crypt_ops/crypto_pwbox.c \ src/lib/crypt_ops/crypto_rand.c \ + src/lib/crypt_ops/crypto_rand_numeric.c \ src/lib/crypt_ops/crypto_rsa.c \ src/lib/crypt_ops/crypto_s2k.c \ src/lib/crypt_ops/crypto_util.c \ |