Browse Source

Add support for libcrypto headers

pull/166/head
emanuele-f 5 years ago
parent
commit
7cc73aec62
  1. 9
      transform_aes.c

9
transform_aes.c

@ -21,8 +21,13 @@
#ifdef N2N_HAVE_AES #ifdef N2N_HAVE_AES
#include "openssl/aes.h" #ifdef USE_LIBCRYPTO_PATH
#include "openssl/sha.h" #include <crypto/aes.h>
#include <crypto/sha.h>
#else
#include <openssl/aes.h>
#include <openssl/sha.h>
#endif
#define N2N_AES_TRANSFORM_VERSION 1 /* version of the transform encoding */ #define N2N_AES_TRANSFORM_VERSION 1 /* version of the transform encoding */
#define N2N_AES_IVEC_SIZE (AES_BLOCK_SIZE) #define N2N_AES_IVEC_SIZE (AES_BLOCK_SIZE)

Loading…
Cancel
Save