Posts: 109
Threads: 16
Joined: Jan 2011
Reputation:
0
I'm trying to make an UCP, however as many know passwords are encrypted.
is there anyway I can de-crypt them for this login? (obviously so they're not shown, but the login can check the params)
Posts: 274
Threads: 2
Joined: Nov 2012
Reputation:
0
Well you don't need to decrypt it just encrypt it, simple
Posts: 121
Threads: 5
Joined: Dec 2011
Reputation:
0
You have to hash it like you do on server to compare them. (encrypt password input)
Posts: 2,629
Threads: 40
Joined: Mar 2008
Reputation:
0
If you're hashing passwords with methods such as MD5, SHA1, Whirlpool etc then they cannot be decrypted as they are one way. Just hash the user input and compare it to the hash in the database and that's how you will find your solution. Encryption methods are not as good because if a person obtains your source code then every ones passwords could be stolen.
Posts: 109
Threads: 16
Joined: Jan 2011
Reputation:
0
Aren't you disrespectful.
I knew you had to compare, I'm better with Habbo servers and PAWN rather than PHP.
But yes, thankyou.