Hey guys.
I have an application that was originally written in PHP using a SQL Server backend. All the user account passwords were stored in a MD5 Hash. The application has been rewritten completely in ASP (C#) still using a SQL Server backend. I want to import the old users accounts (usernames,passwords,etc) into the new database. The problem is that I cant get ASP to just use straight up regular MD5 when creating new accounts and authenticating new and old accounts. There is a salt (tried making that null, still no go) and a passwordFormat [1 | 2 | 3] column as well. I've messed with everything. Even if you choose MD5 it still gets salted.
I was hoping to do this at the Membership level and not mess with each login form or anything. Let me know what you guys think.
Thanks.
.maple.