You are developing an ASP.NET MVC application.
You need to authenticate clients by using NT LAN Manager (NTLM).
Which authentication method should you implement?
A.
Basic
B.
Windows
C.
Forms
D.
Kerberos
Explanation:
http://msdn.microsoft.com/en‐us/library/aa292114(v=vs.71).aspx
https://msdn.microsoft.com/en-us/library/windows/desktop/aa378749(v=vs.85).aspx
For a production web application, on the hand, you use IIS as your web server. IIS supports several types of authentication including:
Basic Authentication – Defined as part of the HTTP 1.0 protocol. Sends user names and passwords in clear text (Base64 encoded) across the Internet.
– Digest Authentication – Sends a hash of a password, instead of the password itself, across the internet. – Integrated Windows (NTLM) Authentication – The best type of authentication to use in intranet environments using windows. – Certificate Authentication – Enables authentication using a client-side certificate. The certificate maps to a Windows user account.