openssl fallback

This commit is contained in:
Carles Fernandez 2015-10-27 20:20:03 +01:00
parent e4206d38f6
commit b0a53dc45d
1 changed files with 9 additions and 0 deletions

View File

@ -18,11 +18,20 @@
#define EXPORT
#endif
#if USE_OPENSSL_FALLBACK
#include <openssl/crypto.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#else
#include <gnutls/gnutls.h>
#include <gnutls/compat.h>
#include <gnutls/crypto.h>
#include <gnutls/openssl.h>
#include <gnutls/x509.h>
#endif
#include <PDU.h>
#include <ULP-PDU.h>