2017-11-14 03:16:20 +00:00
|
|
|
menu "ESP HTTP client"
|
|
|
|
|
|
|
|
|
2019-01-25 16:10:53 +00:00
|
|
|
config ESP_HTTP_CLIENT_ENABLE_HTTPS
|
|
|
|
bool "Enable https"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option will enable https protocol by linking mbedtls library and initializing SSL transport
|
2017-11-14 03:16:20 +00:00
|
|
|
|
2019-04-03 14:13:13 +00:00
|
|
|
config ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH
|
|
|
|
bool "Enable HTTP Basic Authentication"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option will enable HTTP Basic Authentication. It is disabled by default as Basic
|
|
|
|
auth uses unencrypted encoding, so it introduces a vulnerability when not using TLS
|
|
|
|
|
2017-11-14 03:16:20 +00:00
|
|
|
endmenu
|