Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Stream loaders for BearSSL #7675

Merged
merged 3 commits into from
Oct 28, 2020

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
Projects
None yet
2 participants