diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-05-18 10:47:35 +0200 |
---|---|---|
committer | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-05-18 11:04:31 +0200 |
commit | d38e7ddf5b930ae7e4d3a5da63cfc32d92a8dfa7 (patch) | |
tree | 297cffabe4c49ddb922af20d8f1b681e4418ebf7 /src/or/or.h | |
parent | 827b85e9070950c524546adb40541c7c6d3dbcb2 (diff) | |
download | tor-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/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index e64ad1d4b7..30a9828aa8 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -69,6 +69,7 @@ #include "crypto.h" #include "crypto_format.h" #include "crypto_dh.h" +#include "crypto_hkdf.h" #include "tortls.h" #include "torlog.h" #include "container.h" |