Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a web based application that will need to store usernames and passwords. Account information will be needed to perform secondary authentication on behalf of users so I can't simply store usernames and passwords using one-way hashing with salt etc.

Assuming that my basic requirement can't change, any suggestions on how to handle the storage of these accounts? Symetric Encryption using the machine key? Using a random key in web.config? Using SQL based encryption?

share|improve this question
@Andrew Robinson, you don't roll your own. Use MembershipProviders. – Simucal Apr 20 '09 at 17:41

3 Answers

up vote 4 down vote accepted

Why don't you use the builtin MembershipProviders? http://msdn.microsoft.com/en-us/library/yh26yfzy.aspx

share|improve this answer
My understanding of the asp.net membership provider is that it provides a method of authenticating my my web application. I need to store accounts / password that I can use to authenticate against using a secondary API that I don't control. I need to replay the account / password. Can I do that? – andleer Apr 20 '09 at 17:46
OK, This is what I was looking for: msdn.microsoft.com/en-us/library/2x0c6sfa.aspx – andleer Apr 20 '09 at 17:49

The best practice here is to not ask for this information until the moment you pass it on to the external provider. Then only keep the external provider's authentication token, such that you only need to ask for credentials again at points where the external resource would require them if the user were accessing it directly.

share|improve this answer
Ideally this is what I would like to do but I don't think the API that I am working with supports this. I will need to pass the account / password for all opperations. – andleer Apr 20 '09 at 17:51

The SqlMemebershipProvider has everything you need. There is even a built-in app that comes with .NET that will prep your DB.

Here is the MSDN page on the db prep tool

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.