summaryrefslogtreecommitdiff
path: root/src/common/include.am
diff options
context:
space:
mode:
authorFernando Fernandez Mancera <ffmancera@riseup.net>2018-05-18 10:47:35 +0200
committerFernando Fernandez Mancera <ffmancera@riseup.net>2018-05-18 11:04:31 +0200
commitd38e7ddf5b930ae7e4d3a5da63cfc32d92a8dfa7 (patch)
tree297cffabe4c49ddb922af20d8f1b681e4418ebf7 /src/common/include.am
parent827b85e9070950c524546adb40541c7c6d3dbcb2 (diff)
downloadtor-d38e7ddf5b930ae7e4d3a5da63cfc32d92a8dfa7.tar.gz
tor-d38e7ddf5b930ae7e4d3a5da63cfc32d92a8dfa7.zip
Refactor crypto.[ch] into smaller HKDF module.
Add two new files (crypto_hkdf.c, crypto_hkdf.h) as new module of crypto.[ch]. This new module includes all functions and dependencies related to HKDF operations. Those have been removed from crypto.[ch]. Follows #24658. Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Diffstat (limited to 'src/common/include.am')
-rw-r--r--src/common/include.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/include.am b/src/common/include.am
index 6dafcea206..c9706c6b4b 100644
--- a/src/common/include.am
+++ b/src/common/include.am
@@ -118,6 +118,7 @@ LIBOR_CRYPTO_A_SRC = \
src/common/crypto_dh.c \
src/common/crypto_digest.c \
src/common/crypto_format.c \
+ src/common/crypto_hkdf.c \
src/common/crypto_openssl_mgt.c \
src/common/crypto_pwbox.c \
src/common/crypto_rand.c \
@@ -175,6 +176,7 @@ COMMONHEADERS = \
src/common/crypto_curve25519.h \
src/common/crypto_ed25519.h \
src/common/crypto_format.h \
+ src/common/crypto_hkdf.h \
src/common/crypto_openssl_mgt.h \
src/common/crypto_pwbox.h \
src/common/crypto_rand.h \