diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-05-08 15:56:04 +0200 |
---|---|---|
committer | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-05-08 15:57:31 +0200 |
commit | ffbf8673b55e0f05bd27e9aa34f45f758941f446 (patch) | |
tree | 9984dbbb4dddfa02d92e201cb449352a3e94bf95 /src/common/crypto_s2k.c | |
parent | f91469c16555836f91691be8adc9c29bb33dfc3f (diff) | |
download | tor-ffbf8673b55e0f05bd27e9aa34f45f758941f446.tar.gz tor-ffbf8673b55e0f05bd27e9aa34f45f758941f446.zip |
Include crypto_dh.h in order to solve dependency issues.
Included crypto_dh.h in some files in order to solve DH module dependency
issues.
Follows #24658.
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Diffstat (limited to 'src/common/crypto_s2k.c')
-rw-r--r-- | src/common/crypto_s2k.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/crypto_s2k.c b/src/common/crypto_s2k.c index 8543760ec5..47cb62d076 100644 --- a/src/common/crypto_s2k.c +++ b/src/common/crypto_s2k.c @@ -15,6 +15,7 @@ #include "compat.h" #include "crypto.h" #include "crypto_digest.h" +#include "crypto_dh.h" #include "crypto_rand.h" #include "crypto_s2k.h" #include "crypto_util.h" |