aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypt_ops/include.am
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-17 11:27:08 -0400
committerNick Mathewson <nickm@torproject.org>2018-07-31 19:46:00 -0400
commit17ea931ac70af3cc11c1729b09b8e1ff17a53348 (patch)
treee5662451f912f09d57bbc469f4931080ace12640 /src/lib/crypt_ops/include.am
parent32bbc8f6b5e7d964439c6ba91f87f7d5fba673cc (diff)
downloadtor-17ea931ac70af3cc11c1729b09b8e1ff17a53348.tar.gz
tor-17ea931ac70af3cc11c1729b09b8e1ff17a53348.zip
Implement DH in NSS.
Diffstat (limited to 'src/lib/crypt_ops/include.am')
-rw-r--r--src/lib/crypt_ops/include.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/crypt_ops/include.am b/src/lib/crypt_ops/include.am
index a5541d49e8..05451cc0e0 100644
--- a/src/lib/crypt_ops/include.am
+++ b/src/lib/crypt_ops/include.am
@@ -25,10 +25,12 @@ src_lib_libtor_crypt_ops_a_SOURCES = \
if USE_NSS
src_lib_libtor_crypt_ops_a_SOURCES += \
src/lib/crypt_ops/aes_nss.c \
+ src/lib/crypt_ops/crypto_dh_nss.c \
src/lib/crypt_ops/crypto_nss_mgt.c
else
src_lib_libtor_crypt_ops_a_SOURCES += \
- src/lib/crypt_ops/aes_openssl.c
+ src/lib/crypt_ops/aes_openssl.c \
+ src/lib/crypt_ops/crypto_dh_openssl.c
endif
if USE_OPENSSL