vote up 0 vote down star
1

Hi folks!

I implemented a custom membership provider. I've also implemented my custom AES Encryption/Decryption overriding the abstract EncryptPassword/DecryptPassword of the MembershipProvider.

however, when I trigger ValidateUser, the password is not automatically converted, am I missing something?

Is it supposed to be called automatically or I have to call this method from my code?

flag

1  
I'm not familiar with MembershipProvider, but it's almost always incorrect to store a decryptable password. You should be using a one-way hash like SHA256. An exception would be if you had to authenticate using that password to another plaintext authentication system. – MichaelGG Jun 28 at 10:55
im storing the encrypted passwords in varbinary. they get decryped when user logs in. – Shimmy Jun 28 at 22:11

2 Answers

vote up 1 vote down check

You need to call your encryption routines yourself.

link|flag
So I can declare the DecryptPassword function as new? i.e. public new string DecriptPassword(byte[] password) instead of the base class pattern public byte[] DecryptPassword(byte[] password)? – Shimmy Jun 28 at 7:14
1  
If you're implementing a membership provider, you should be able to just override the functions, rather than use "new". Then wherever you need to translate a password to/from plaintext, such as in ValidateUser, you can just call the appropriate function. The reason they are in the interface is to give a consistent way of encrypting/decrypting the password to consumers of your provider, rather than them being in the dark as to what encryption algorithm you used. – womp Jun 28 at 17:35
thanks dude, i really appreciate it – Shimmy Jun 28 at 22:09
vote up 0 vote down

Hey Guys, I am having the same problem. DId you find a solution yet? If yes can you please let me know?

Thanks in advance.

NG

link|flag
Just call the Encrypt/Decrypt (base.Decrypt etc.) from the code, after placing the key in the web.config + setting the encryption type. or else - what is your question? – Shimmy Sep 29 at 0:54

Your Answer

Get an OpenID
or

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