Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

Is there any possibilities to decode md5 using PHP?

user-image
Question added by Noor Khan , Technical Team Lead , Ammrys Studios
Date Posted: 2013/07/21
Shozab Hasan
by Shozab Hasan , Web Designer and Developer , Zaidiz Network

$input = "SmackFactory"; $encrypted = encryptIt( $input ); $decrypted = decryptIt( $encrypted ); echo $encrypted .
'' .
$decrypted; function encryptIt( $q ) { $cryptKey = 'qJB0rGtIn5UB1xG03efyCp'; $qEncoded = base64_encode( mcrypt_encrypt( MCRYPT_RIJNDAEL_256, md5( $cryptKey ), $q, MCRYPT_MODE_CBC, md5( md5( $cryptKey ) ) ) ); return( $qEncoded ); } function decryptIt( $q ) { $cryptKey = 'qJB0rGtIn5UB1xG03efyCp'; $qDecoded = rtrim( mcrypt_decrypt( MCRYPT_RIJNDAEL_256, md5( $cryptKey ), base64_decode( $q ), MCRYPT_MODE_CBC, md5( md5( $cryptKey ) ) ), "\0"); return( $qDecoded ); }

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.