144k views
1 vote
What is the type of web authentication that requires the browser to prompt the user for a username and password and then sends the server on each request a md5 hash of the username, password, and a nonce value provided by the server? group of answer choices

O digest authentication
O single sign on authentication
O basic authentication
O form-based authentication

User Bernadette
by
8.0k points

1 Answer

3 votes

Final answer:

The web authentication method described is digest authentication, which uses an MD5 hash of the username, password, and a server-provided nonce for security.

Step-by-step explanation:

The type of web authentication that requires the browser to prompt the user for a username and password and then sends the server on each request an MD5 hash of the username, password, and a nonce value provided by the server is known as digest authentication. This is more secure than basic authentication, which sends credentials in clear text. Unlike form-based authentication and single sign-on authentication, digest authentication is implemented at the HTTP protocol level and does not require the use of HTML forms or browser cookies.

User Bubaker
by
7.6k points