Closed

Description
Basic Infos
Hardware
Hardware: Wemos D1 mini
Core Version: 2.3.0-master
Description
Simply unable to initiate the SSL handshake...
Settings in IDE
Module: Generic ESP8266 Module
Flash Size: 4MB
CPU Frequency: 80Mhz
Flash Mode: qio
Flash Frequency: 80Mhz
Upload Using: SERIAL
Reset Method: nodemcu
Sketch
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#define WLAN_SSID "H********8"
#define WLAN_PASS "T***********2"
#define SERVER_HOST "apiv2.boltbutton.com"
#define SERVER_PORT 443
// WiFiFlientSecure for SSL/TLS support
WiFiClientSecure client;
//HTTPS Port fingerprint
const char* fingerprint = "07 59 1b 25 a7 36 7a 95 b0 ef 2d ae b2 58 d4 50 a0 89 d4 bb";
void setup() {
Serial.begin(115200);
delay(10);
Serial.setDebugOutput(true);
// Connect to WiFi access point.
Serial.print("Connecting to ");
Serial.println(WLAN_SSID);
delay(1000);
WiFi.begin(WLAN_SSID, WLAN_PASS);
delay(2000);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("WiFi connected");
Serial.print("IP address: "); Serial.println(WiFi.localIP());
}
void loop() {
const char* host = SERVER_HOST;
const int httpPort = SERVER_PORT;
// create a secure connection using WiFiClientSecure
WiFiClientSecure client;
if (client.connect(host, httpPort)) {
// verify the signature of the ssl certificate
if (client.verify(fingerprint, host)) {
Serial.println("ssl cert matches");
} else {
Serial.println("ssl cert mismatch");
}
}
else {
Serial.println("Connect fail before verification");
}
delay(60000);
}
Debug Messages
WiFi connected
IP address: X.X.X.X
:ref 1
please start sntp first !
State: sending Client Hello (1)
:sent 72
:rn 7
:rcl
:abort
:rd 5, 7, 0
:rdi 7, 5
:rd 2, 7, 5
:rdi 2, 2
:c0 2, 7
Alert: handshake failure
Error: SSL error 40
Alert: unexpected message
Alert: close notify
Connect fail before verification
Metadata
Metadata
Assignees
Labels
No labels