Skip to content

Commit

Permalink
Portduino: WolfSSL Support
Browse files Browse the repository at this point in the history
  • Loading branch information
vidplace7 committed Dec 16, 2024
1 parent 69d01a8 commit a64dc3d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/mesh/raspihttp/PiWebServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,22 @@ mail: [email protected]
#include "main.h"
#include "mesh/wifi/WiFiAPClient.h"
#include "sleep.h"

#ifdef USE_WOLFSSL
#include <wolfssl/openssl/bn.h>
#include <wolfssl/openssl/evp.h>
#include <wolfssl/openssl/pem.h>
#include <wolfssl/openssl/rsa.h>
#include <wolfssl/openssl/x509.h>
#include <wolfssl/options.h>
#else
#include <openssl/bn.h>
#include <openssl/evp.h>
#include <openssl/pem.h>
#include <openssl/rsa.h>
#include <openssl/x509.h>
#endif

#include <orcania.h>
#include <string.h>
#include <ulfius.h>
Expand Down

0 comments on commit a64dc3d

Please sign in to comment.