2017-11-13 22:16:20 -05:00
|
|
|
menu "ESP HTTP client"
|
|
|
|
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_HTTP_CLIENT_ENABLE_HTTPS
|
|
|
|
bool "Enable https"
|
|
|
|
default y
|
|
|
|
help
|
2020-08-04 03:57:06 -04:00
|
|
|
This option will enable https protocol by linking esp-tls library and initializing SSL transport
|
2017-11-13 22:16:20 -05:00
|
|
|
|
2019-04-03 10:13:13 -04: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
|
|
|
|
|
2021-03-15 00:52:15 -04:00
|
|
|
config ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH
|
|
|
|
bool "Enable HTTP Digest Authentication"
|
2021-10-25 04:48:56 -04:00
|
|
|
default n
|
2021-03-15 00:52:15 -04:00
|
|
|
help
|
|
|
|
This option will enable HTTP Digest Authentication. It is enabled by default, but use of this
|
|
|
|
configuration is not recommended as the password can be derived from the exchange, so it introduces
|
|
|
|
a vulnerability when not using TLS
|
2017-11-13 22:16:20 -05:00
|
|
|
endmenu
|