SSLClient
SSLClient copied to clipboard
SSLClient - generic secure client Arduino library using mbedtls
The intention is to include solutions to issue 33 and 71 before this is merged...
Hello, I am using sim7020 and esp32 to connect to AWS MQTT and I have used digitaldragon/[email protected] for ssl encryption. However, in the running process, I found that the certificate...
Some MQTT broker require SNI support for authentication (e.g. see here https://community.hivemq.com/t/connecting-to-private-broker-with-esp32-sim800l/2126 and https://community.hivemq.com/t/client-is-not-authorized-to-connect/856/37) Does SSLClient support that? How could I set this field? Do I have to enable SNI...
Hi all, I'm trying to connect with my own mqtt broker via a gsm800L while using the example ```mqtt_gsm_sim800l_azure_x509_device_Twin.ino``` with a self-generated CA/Client/Private key. But im receiving ```error code (001D)```...
Hi, I am using A7600 with esp32 to connect AWS mqtt! But I got the error message below: **[ 26256][E][ssl_client.cpp:728] perform_ssl_handshake(): mbedtls_ssl_get_record_expansion returned -0xffffffe3 [ 26263][E][ssl_client.cpp:45] _handle_error(): [start_ssl_client():353]: (29) UNKNOWN...
Hello, I have really strange issue when trying to make HTTP POST with SSL from ESP32 with SIM7600G. The thing is it works from time to time. Probably 1-2 out...
I am using this library to connect to mqtt broker with root certificate, client certificate and private key. I am getting following errors while establishing connection over ssl. [ 62175][E][ssl_client.cpp:728]...
I tried with W5500 connected with ESP32 and PubSubClient library for Secured MQTT EthernetClient LANClient; SSLClient secureClientEth(&LANClient); PubSubClient mqttEthClient(secureClientEth); EthernetLarge library is used. The code does get compiled however messages...
Hi, great library. What im missing for my use case however is support for setting the ALPN protocols. This is possible in `WiFiClientSecure` through the `setAlpnProtocols` function. I could write...
I searching for an alternative way of certificates for this SSLClient, instead of the loading it with PROGMEM. I´ve seen some functions like loadCA() etc. which is expecting a stream...