10000 certificate and public keys automatic updater by d-a-v · Pull Request #8218 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

certificate and public keys automatic updater #8218

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

Merged
merged 11 commits into from
Jul 17, 2021
Prev Previous commit
Next Next commit
fix missing EC curve initialization
  • Loading branch information
d-a-v committed Jul 16, 2021
commit e2cc02943b3360b2f6ba12e67a9caf0506db1433
1 change: 1 addition & 0 deletions libraries/ESP8266WiFi/src/BearSSLHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ namespace brssl {
}
memcpy(pk->key.ec.q, ek->q, ek->qlen);
pk->key.ec.qlen = ek->qlen;
pk->key.ec.curve = ek->curve;
return pk;

default:
Expand Down
0