alkonosst / SSLClientESP32

SSLClient - generic secure client Arduino library using mbedtls
GNU General Public License v3.0
5 stars 3 forks source link

Logo
SSLClientESP32

A library to add a secure connection to a Client object


Table of contents


Description

The SSLClientESP32 library allows establishing a secure connection using SSL/TLS. Has been designed for ESP32. Allows you to give a secure connection to any object derived from Client, such as WiFiClient and TinyGsmClient. Offers to be able to attach a Certificate Bundle to the client, reducing the number of certificates entered manually into the firmware and increasing the possibility of establish a secure connection to most servers.

Usage

Here are some basic examples...

Adding library to platformio.ini (PlatformIO)

; Most recent changes
lib_deps =
  https://github.com/alkonosst/SSLClientESP32.git

; Release vx.y.z
lib_deps =
  https://github.com/alkonosst/SSLClientESP32.git#v2.0.0

Using WiFi and Root Certificate to client

#include <WiFi.h>
#include "SSLClientESP32.h"

// Create clients
WiFiClient base_client;
SSLClientESP32 ssl_client(&base_client);

// Root Certificate ISRG Root X1
const char* isrg_root_ca = "-----BEGIN CERTIFICATE-----\n"
                           "...\n"
                           "-----END CERTIFICATE-----\n";

void setup() {
  // Attach certificate
  ssl_client.setCACert(isrg_root_ca);

  // Enable WiFi
  WiFi.begin(WIFI_SSID, WIFI_PASS);
}

void foo() {
  if (!ssl_client.connect(SERVER, 443)) {
    // Connection failed
  } else {
    // Connection successful
  }
}

Using SIM7600G-H and Certificate Bundle

platformio.ini

; File must exist in ./data/crt/
; You can use the file in /examples/https_wifi_and_sim7600_certbundle/data/crt/x509_crt_bundle.bin of this repo
board_build.embed_files = data/crt/x509_crt_bundle.bin

main.cpp

#include <WiFi.h>
#include "TinyGSM.h"
#include "SSLClientESP32.h"

// Modem SIM7600G-H
TinyGsm modem(Serial1);

// Create clients
TinyGsmClient base_client(modem);
SSLClientESP32 ssl_client(&base_client);

// Declaration of binary file
extern const uint8_t ca_cert_bundle_start[] asm("_binary_data_crt_x509_crt_bundle_bin_start");
extern const uint8_t ca_cert_bundle_end[] asm("_binary_data_crt_x509_crt_bundle_bin_end");

void setup() {
  // Attach certificate bundle
  ssl_client.setCACertBundle(ca_cert_bundle_start);

  // Enable and connect modem...
}

void foo() {
  if (!ssl_client.connect(SERVER, 443)) {
    // Connection failed
  } else {
    // Connection successful
  }
}

Changing the base client in runtime

#include <WiFi.h>
#include "TinyGSM.h"
#include "SSLClientESP32.h"

// Modem SIM7600G-H
TinyGsm modem(Serial1);

// Create clients
WiFiClient base_client_1, base_client_2;
TinyGsmClient base_client_3(modem);
SSLClientESP32 ssl_client(&base_client_1);

void setup() {
  // Attach certificate...

  // Enable WiFi...

  // Enable and connect modem...
}

void foo(uint8_t client) {
  switch(client) {
    case 1: ssl_client.setClient(&base_client_1); break;
    case 2: ssl_client.setClient(&base_client_2); break;
    case 3: ssl_client.setClient(&base_client_3); break;
  }
}

Credits

Huge thanks to govorox to provide the base code of this library :raised_hands: