Kconfig 561 B

1234567891011121314151617
  1. menu "ESP HTTP client"
  2. config ESP_HTTP_CLIENT_ENABLE_HTTPS
  3. bool "Enable https"
  4. default y
  5. help
  6. This option will enable https protocol by linking mbedtls library and initializing SSL transport
  7. config ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH
  8. bool "Enable HTTP Basic Authentication"
  9. default n
  10. help
  11. This option will enable HTTP Basic Authentication. It is disabled by default as Basic
  12. auth uses unencrypted encoding, so it introduces a vulnerability when not using TLS
  13. endmenu