-
Notifications
You must be signed in to change notification settings - Fork 13.3k
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
SSL examples: updates #8643
SSL examples: updates #8643
Conversation
Not seeing the crash you mentioned in matrix. Insecure less / fewer ciphers example does not work now
|
It depends on what ciphers are enabled and what is used inside certificates. |
s/Certificate ciphers/Connection ciphers/? referring s_client once again, using ssllabs.com servers // For apps which want to use less secure but faster ciphers, only
static const uint16_t faster_suites_P[] PROGMEM = {
BR_TLS_RSA_WITH_AES_256_CBC_SHA256,
BR_TLS_RSA_WITH_AES_128_CBC_SHA256,
BR_TLS_RSA_WITH_AES_256_CBC_SHA,
BR_TLS_RSA_WITH_AES_128_CBC_SHA };
( |
Plus, good old |
With example.com, only the last test has an issue. |
The custom cipher list might need a fix for a better example.
The ethernet example works and gives the same result as WiFi example.
workaround for #8642 (comment)