So, ESPAsyncWebServer library is using the Digest MD5 Authentication by default, and I want to use this feature in my webserver, but there is a problem, I don't like the ugly prompt box, and I don't want to write a form for authentication, because is sends the password in clear text. I have searched all files in the Src folder of the ESPAsyncWebServer library, Yet I had no luck up to my beginner programming knowledge. So, how can I do this? it is something totally browser side and I cannot change it?
Update: I was able to get the following from the Wireshark.
Hypertext Transfer Protocol
GET /openthefdoor HTTP/1.1\r\n
[Expert Info (Chat/Sequence): GET /openthefdoor HTTP/1.1\r\n]
[GET /openthefdoor HTTP/1.1\r\n]
[Severity level: Chat]
[Group: Sequence]
Request Method: GET
Request URI: /openthefdoor
Request Version: HTTP/1.1
Host: 192.168.1.3\r\n
Connection: keep-alive\r\n
Cache-Control: max-age=0\r\n
[truncated]Authorization: Digest username="admin", realm="asyncesp", nonce="d13ba3040a4ed5c661a47d28c08554f4", uri="/openthefdoor", response="ca8806aa058dda66838784e784e67f8b", opaque="90ba2cd8a2870065f4daa582fd57105a", qop=auth, nc=0000
username="admin"
realm="asyncesp"
nonce="d13ba3040a4ed5c661a47d28c08554f4"
uri="/openthefdoor"
response="ca8806aa058dda66838784e784e67f8b"
opaque="90ba2cd8a2870065f4daa582fd57105a"
qop=auth
nc=00000002
2nd update: based on this question I guess the popup is coming up from the browser and I was looking in a wrong place!
searched all files in the Src folder... what did you search for?authenticate()andrequestDigestAuthentication()andWWW-Authenticateand to my knowledge I couldn't find anything useful to me.