Jump to content

Encode/Decode


cerin

Recommended Posts

I have successfully encoded some text using the Encode command referred to [a href=\"http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html\" target=\"_blank\"]here[/a]. Now, I am trying to decode the string I just encoded. I don't see what exactly I have to pass as the arguement "crypt_str" or at least how to identify it without typing the encoded text. I have tried stuff like
[code]WHERE userid='username' SET password=DECODE(tons of tried things here,'password');[/code]

I seems to me that MySQL has syntax with zero flexibility.
Link to comment
https://forums.phpfreaks.com/topic/3595-encodedecode/
Share on other sites

To encode something:

UPDATE table SET passwordcolumn = ENCODE("thePassword", "yourSalt") WHERE id=1;

To decode it:

SELECT DECODE(passwordcolumn, "yourSalt") FROM table WHERE id=1;

You must choose a salt, that is your secret key for decoding the string. If there was no secret key, and all you had to do to decode it was say DECODE(passwordcolumn), then anybody could do it, and there'd be no point encrypting it. Clear?
Link to comment
https://forums.phpfreaks.com/topic/3595-encodedecode/#findComment-12483
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.