I want to compare hash created with OracleMembershipProvider method:
CreateUser(username, password, e-mail)
with hash manually created in php. CreateUser method saves password hash and salt in db. I must add that salt values are different for each password.
I dont know th pattern that OracleMembershipProvider is using for hash generating. since my .NET application is 4.5 framework and hash algorithmtype is not specified I presume sha-1 is used.
I just want to get pattern of hash generation so I can compare it and use the same db for PHP application log in.
Thank you in advance.