diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-11 13:44:35 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-11 13:45:49 -0400 |
commit | 12a1ada15853f0cde2839921bf413ba24a741192 (patch) | |
tree | 7c65cff1ce333947a201e13c66ed33d5c965b223 /src/test/bench.c | |
parent | 79267bad654ed39f13e6fb89a5468f23468c3169 (diff) | |
download | tor-12a1ada15853f0cde2839921bf413ba24a741192.tar.gz tor-12a1ada15853f0cde2839921bf413ba24a741192.zip |
Move the initialization and cleanup parts of crypto.c
These are now part of crypto_init.c. The openssl-only parts now
live in crypto_openssl_mgt.c.
I recommend reviewing this patch with -b and --color-moved.
Diffstat (limited to 'src/test/bench.c')
-rw-r--r-- | src/test/bench.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/bench.c b/src/test/bench.c index 7919a4224f..50af9e0d69 100644 --- a/src/test/bench.c +++ b/src/test/bench.c @@ -33,6 +33,7 @@ #include "core/or/or_circuit_st.h" #include "lib/crypt_ops/digestset.h" +#include "lib/crypt_ops/crypto_init.h" #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_PROCESS_CPUTIME_ID) static uint64_t nanostart; |