8000 Update to BearSSL 0.6+ release, add AES_CCM modes by earlephilhower · Pull Request #5164 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Update to BearSSL 0.6+ release, add AES_CCM modes #5164

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 9 commits into from
Sep 28, 2018
Prev Previous commit
Next Next commit
Enable the aes_ccm initialization in client/server
  • Loading branch information
earlephilhower committed Sep 25, 2018
commit 8fd3938847a3f7c5706d030b996a0643fe6734c0
1 change: 1 addition & 0 deletions libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ extern "C" {
br_ssl_engine_set_prf_sha384(&cc->eng, &br_tls12_sha384_prf);
br_ssl_engine_set_default_aes_cbc(&cc->eng);
br_ssl_engine_set_default_aes_gcm(&cc->eng);
br_ssl_engine_set_default_aes_ccm(&cc->eng);
br_ssl_engine_set_default_des_cbc(&cc->eng);
br_ssl_engine_set_default_chapol(&cc->eng);
}
Expand Down
0