Possible Duplicate:
Is it possible to decrypt md5 hashes?
Well, first of all, is it possible to decrypt md5 or sha1?
The reason why I need to decrypt is:
I have an application, which passes POST parameters in sha1 form, lets say he wants to pass 1234, the 1234 will be hashed using sha1 (or md5), so the url string will be like this:
www.domain.com/index.php?var=kskn312n3jnkn123...
How do I get the value back? I mean, after the var variable, how to convert back to 1234. (1234 is the score that the user wants to pass).
EDIT:
Based on Greg answer:
Can i do this:
the url: .../?score=uabsdiubasdbjasbkd.
Then in php:
$get = $_GET['score'];
if ($get == sha1($str + 'secret'))
so, the score is $str, which I am going to insert to database. Is it what Greg means? Please advice/correct me if I am wrong. I am new to php. Thanks
