Skip to content

Conversation

earlephilhower
Copy link
Collaborator

Fixes #7671

Allows for code to do things like read certs from LittleFS or even HTTP
connections with code like:

File cert = LittleFS.open("/client-crt.pem", "r");
clientCert = new X509List(cert, cert.size());
cert.close();

Fixes esp8266#7671 Allows for code to do things like read certs from LittleFS or even HTTP connections with code like: File cert = LittleFS.open("/client-crt.pem", "r"); clientCert = new X509List(cert, cert.size()); cert.close();
Copy link
Collaborator

@d-a-v d-a-v left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approving even if #7671 seems to be solved

@earlephilhower earlephilhower merged commit 77bd71e into esp8266:master Oct 28, 2020
@earlephilhower earlephilhower deleted the bsslstream branch October 28, 2020 14:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment