doujiu7680 2016-05-06 02:32
浏览 45
已采纳

mcrypt_encrypt&mcrypt_decrypt在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="myemail1@email.com"; 

$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

  • 写回答

2条回答 默认 最新

  • douhulao7642 2016-05-06 02:38
    关注

    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="myemail1@email.com"; 
    
    $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=
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?