Hello,
Imagine you have an ASP.NET based website that users have to authenticate for to get access. The user data (such as username, password and other information relevant for the website) is stored in a Microsoft Sql database.
I know that it is possible to write an custom membership provider to create an own authentication method.
However, what is the best way to
- ensure that the username and password cannot be intercepted by listening to the network traffic in between the client and the server
- store the data in a way so that only the user himself can access it and not even any administrator is able to see these information
If there is any sort of tutorial, howto, screencast or whatever you can point me to or you have even a simple explanation, that would be great!
Thanks, Chris.