Hello guys! i was just wondering if anyone can teach me how to decrypt an encrypted password?
<?php
$pass = "Frihost";
print "$pass";
$Pass = crypt($pass);
print "     $Pass";
?>
How will i decrypt this encrypted word "Frihost"? thanks a lot!
<?php
$pass = "Frihost";
print "$pass";
$Pass = crypt($pass);
print "     $Pass";
?>
How will i decrypt this encrypted word "Frihost"? thanks a lot!
