tags:

views:

128

answers:

1

I need to compare the answer in with the aspnet_membership tables PasswordAnswer value.

The text in Password answer is in the form of Hashed. What algorithm they have used how they implemented the Salt value in ASP.net Membership Provider.

I have tried hashing (sh1) and compared with text what is salt value

How to hash my answer value.

string answer = "one"; string hashedvalue = "dfdsfsdfdsfdsfdfdf";

I need to compare this both.

I have converted the answer to hashed format. But both are different> I think due to salt value. How can I utilize this.

+1  A: 

You should be using the Membership class' ValidateUser method to do this.

Will