mkomenda
09-28-2015, 04:11 PM
Hello!
I wrote an application for VB4 that sends login data to the forum, then php script converts that input to the password stored in the users TABLE to check if it matches.
In VB4 I just had to use this algorithm to make comparison with the password in the user TABLE
md5(md5(PASSWORD) . SALT);
But I need to update to VB5 and I've seen that things look different in the database, in the user TABLE, there is no more password field, there's now TOKEN, SCHEME and SECRET.
What do I compare user input to in new VB5, TOKEN or SECRET? Or some combination of that.
If that's the case how VB5 genereates TOKEN or SECRET?
Can you please share algorithm VB5 uses for user login authentication.
I wrote an application for VB4 that sends login data to the forum, then php script converts that input to the password stored in the users TABLE to check if it matches.
In VB4 I just had to use this algorithm to make comparison with the password in the user TABLE
md5(md5(PASSWORD) . SALT);
But I need to update to VB5 and I've seen that things look different in the database, in the user TABLE, there is no more password field, there's now TOKEN, SCHEME and SECRET.
What do I compare user input to in new VB5, TOKEN or SECRET? Or some combination of that.
If that's the case how VB5 genereates TOKEN or SECRET?
Can you please share algorithm VB5 uses for user login authentication.