diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 12:47:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 13:19:00 -0400 |
commit | accf239fa3e84451711a25a96ddb13877fd9fcfa (patch) | |
tree | 2063992761a8ec44b050ddfb7d86525ee1f009f5 /src/lib/crypt_ops/crypto_hkdf.c | |
parent | 25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0 (diff) | |
download | tor-accf239fa3e84451711a25a96ddb13877fd9fcfa.tar.gz tor-accf239fa3e84451711a25a96ddb13877fd9fcfa.zip |
Rectify include paths (automated)
Diffstat (limited to 'src/lib/crypt_ops/crypto_hkdf.c')
-rw-r--r-- | src/lib/crypt_ops/crypto_hkdf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/crypt_ops/crypto_hkdf.c b/src/lib/crypt_ops/crypto_hkdf.c index 8dc15b6ffb..86ec4367a9 100644 --- a/src/lib/crypt_ops/crypto_hkdf.c +++ b/src/lib/crypt_ops/crypto_hkdf.c @@ -9,11 +9,11 @@ * \brief Block of functions related with HKDF utilities and operations. **/ -#include "common/crypto_hkdf.h" -#include "common/crypto_util.h" -#include "common/crypto_digest.h" +#include "lib/crypt_ops/crypto_hkdf.h" +#include "lib/crypt_ops/crypto_util.h" +#include "lib/crypt_ops/crypto_digest.h" -#include "common/crypto_openssl_mgt.h" +#include "lib/crypt_ops/crypto_openssl_mgt.h" #include <openssl/opensslv.h> #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) |