1menu "Example Configuration"
2
3    config EXAMPLE_BASIC_AUTH
4        bool "Basic Authentication"
5        default n
6        help
7            Basic Authentication is a method for an HTTP user agent (e.g. a web browser)
8            to provide a user name and password when making a request. It is the simplest
9            technique for enforcing access controls to web resources. because it doesn't
10            require cookies, session identifiers, or login pages; rather, it uses standard
11            fields in the HTTP header.
12            Note that, Basic Authentication is not encrypted channel and also easy to retrieve
13            credentials as they are sent in plain text format.
14
15    config EXAMPLE_BASIC_AUTH_USERNAME
16        string "Basic Authenticate User Name"
17        depends on EXAMPLE_BASIC_AUTH
18        default "ESP32"
19        help
20            The client's user name which used for basic authenticate.
21
22    config EXAMPLE_BASIC_AUTH_PASSWORD
23        string "Basic Authenticate Password"
24        depends on EXAMPLE_BASIC_AUTH
25        default "ESP32Webserver"
26        help
27            The client's password which used for basic authenticate.
28
29endmenu
30