Implement Remember password feature in Login Dialog

  • Thread starter Thread starter Sandeep Singh
  • Start date Start date
S

Sandeep Singh

How can implement remember password feature in Windows Login Dialog in
my custom application.

Thanks,
Sandeep
 
Hi Sandeep,

Thanks for your post.

Normally, after user input the password, to implement remember password
feature, we can use some .Net encapsulation technology to protect the
password into cipher text. Then we can serialize the cipher text to certain
file for persistent. At next running time, the applicaiton can try to read
this persistent storage then decript the cipher text into plain text to
compare with the new user input password.

You can also store the password cipher text in some more secure place, such
as IsolatedStorageFile. For more information, you can search
IsolatedStorageFile in MSDN.

Hope this helps

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Hi Sandeep,

Does my reply make sense to you? Is your problem resolved? Additionally, I
just found a wonderful article regarding password handling, you may get
useful information there:
"Mind Those Passwords!"
http://msdn.microsoft.com/msdnmag/issues/04/07/SecurityBriefs/

If you still have any concern, please feel free to tell me, thanks

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top