mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
docs(protocomm): recommend using security2 scheme for production purpose
This commit is contained in:
@@ -27,14 +27,23 @@ menu "Example Configuration"
|
||||
config EXAMPLE_PROTOCOMM_SECURITY_VERSION_0
|
||||
bool "Security Version 0"
|
||||
select ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0
|
||||
help
|
||||
No security. Data is exchanged as plain text.
|
||||
This mode is not recommended for production use.
|
||||
|
||||
config EXAMPLE_PROTOCOMM_SECURITY_VERSION_1
|
||||
bool "Security version 1"
|
||||
select ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1
|
||||
help
|
||||
Curve25519 key exchange + AES-CTR encryption.
|
||||
Security version 2 is recommended over this for new designs.
|
||||
|
||||
config EXAMPLE_PROTOCOMM_SECURITY_VERSION_2
|
||||
bool "Security version 2"
|
||||
select ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2
|
||||
help
|
||||
SRP6a-based key exchange + AES-GCM encryption. Preferred security
|
||||
version for new designs.
|
||||
endchoice
|
||||
|
||||
choice EXAMPLE_PROTOCOMM_SEC2_MODE
|
||||
|
||||
Reference in New Issue
Block a user