Search code examples
phpencryptionmcrypt

mcrypt_encrypt & mcrypt_decrypt doesn't work on localhost


I use mcrypt_decrypt and encrypt to my live website. Now, I would like to change some codes on it and test it on localhost. The encrypting/decrypting works well on my live web, but not on localhost. I echo each encryted variable to see if there are value but it seems no work at all. Any idea?

$secret_key ="qazxsw";
$email="[email protected]"; 

$encrypted_data = trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $secret_key, $email, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND))));


echo $encrypted_data ;

EDIT: XAMPP-5.6.3


Solution

  • You have take this error beacuse this Algorythm you used is not suppor 8 char keys,

    please increase your $secretkey="" to 16 char below codes

    <?PHP
    $secret_key ="qazxswqazxswqazx";
    $email="[email protected]"; 
    
    $encrypted_data = trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $secret_key, $email, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND))));
    
    
    echo $encrypted_data ;
    ?>
    

    OutPut :

    F2GUGzXHKXZruXDpAwMWBeSzwcRKS+CYl/ekUt+dHto=