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

Commits on Oct 24, 2020

  1. Add Stream loaders for BearSSL

    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();
    earlephilhower committed Oct 24, 2020
    Configuration menu
    Copy the full SHA
    cbb9fc2 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2020

  1. Configuration menu
    Copy the full SHA
    1dc3ce2 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2020

  1. Configuration menu
    Copy the full SHA
    9616265 View commit details
    Browse the repository at this point in the history