views:

26

answers:

1

I have encountered a very strange issue. Whenever I use the .NET membership provider to reset a password, it generates strange characters, which don't represent the password at all.

An example of the password it generates is:

쥳⮚聙蟐֡ᑡ壈I#BAhy(ox32+y*

It does this on every password. Has anyone seen this before or know a fix?

Thanks, George

A: 

Turns out that the Password in the membership provider was mix matched with the ASP.NET config password storage type, so when the password was being pulled out, it was attempting to decrypt it in the wrong manner.

George