forked from nodemcu/nodemcu-firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nathaniel Wesley Filardo
committed
Aug 3, 2017
1 parent
6c90434
commit c1ed48c
Showing
3 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,8 +101,8 @@ | |
#define MBEDTLS_KEY_EXCHANGE_RSA_ENABLED | ||
#define MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED | ||
#define MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED | ||
#undef MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED | ||
#undef MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED | ||
#define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
nwf
Owner
|
||
#define MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED | ||
#define MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED | ||
|
||
#undef MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED | ||
|
@@ -197,7 +197,7 @@ | |
#define MBEDTLS_DES_C | ||
#define MBEDTLS_DHM_C | ||
#define MBEDTLS_ECDH_C | ||
#undef MBEDTLS_ECDSA_C | ||
#define MBEDTLS_ECDSA_C | ||
#undef MBEDTLS_ECJPAKE_C | ||
#define MBEDTLS_ECP_C | ||
#define MBEDTLS_ENTROPY_C | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Not your fault but all these options overstrain the average user. Could they be properly grouped eventually so my cloud build could potentially give the user just a few more options? Of course, it'd ideally still just be TLS y/n but I understand those days are over due to lack of memory.
What would be the grouping dimension, though? Cypher type like ECDHE, RSA, etc. (what about combinations)? Or rather key length 128, 256?