aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypt_ops/include.am
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-19 12:03:01 -0400
committerNick Mathewson <nickm@torproject.org>2018-08-21 12:24:08 -0400
commitaa45511250ed9509ca06b76497f66835796a7998 (patch)
tree71ad4c70c375598742ab8c99297031407c704df8 /src/lib/crypt_ops/include.am
parentcb5cfe3177bbf841e5ad18c0103b3d2ebe443e07 (diff)
downloadtor-aa45511250ed9509ca06b76497f66835796a7998.tar.gz
tor-aa45511250ed9509ca06b76497f66835796a7998.zip
Implement RSA for NSS.
Diffstat (limited to 'src/lib/crypt_ops/include.am')
-rw-r--r--src/lib/crypt_ops/include.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/crypt_ops/include.am b/src/lib/crypt_ops/include.am
index 69bd7c2dbf..195dac6bdb 100644
--- a/src/lib/crypt_ops/include.am
+++ b/src/lib/crypt_ops/include.am
@@ -19,7 +19,6 @@ src_lib_libtor_crypt_ops_a_SOURCES = \
src/lib/crypt_ops/crypto_pwbox.c \
src/lib/crypt_ops/crypto_rand.c \
src/lib/crypt_ops/crypto_rsa.c \
- src/lib/crypt_ops/crypto_rsa_openssl.c \
src/lib/crypt_ops/crypto_s2k.c \
src/lib/crypt_ops/crypto_util.c \
src/lib/crypt_ops/digestset.c
@@ -28,10 +27,12 @@ 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
+ src/lib/crypt_ops/crypto_nss_mgt.c \
+ src/lib/crypt_ops/crypto_rsa_nss.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_rsa_openssl.c
endif
if USE_OPENSSL