我有以下课程,有2个Mcrypt方法。我正在加密一个字符串,通过一个API通过JSONP发送它,并让消费者使用相同的盐使用相同的解密方法,我无法解密字符串。在同一服务器上加密和解密时,可以成功运行服务器上的测试,但是当加密字符串在一台服务器上加密并尝试使用正确的盐在另一台服务器上解密时,它根本无法对其进行解密。使用这种模式(MCRYPT_MODE_ECB),我的理解是IV不是必需的。有人知道为什么会发生这种情况吗?
<?php
class McryptHelper
{
/**
* Encrypt
* Encrypts a string using the MCRYPT_RIJNDAEL_256 cipher and the MCRYPT_MODE_ECB.
*
* @static
* @param string $string
* @param string $salt
* @return string
*/
public static function encrypt($string, $salt)
{
$saltSize = mcrypt_get_key_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
$salt = substr($salt, 0, $saltSize);
$cipherText = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $salt, $string, MCRYPT_MODE_ECB);
$encrypted = base64_encode($cipherText);
return trim($encrypted);
}
/**
* Decrypt
* Decrypts a string using the MCRYPT_RIJNDAEL_256 cipher and the MCRYPT_MODE_ECB mode.
*
* @static
* @param string $string
* @param string $salt
* @return string
*/
public static function decrypt($string, $salt)
{
$saltSize = mcrypt_get_key_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
$salt = substr($salt, 0, $saltSize);
$cipherText = base64_decode($string);
$decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $salt, $cipherText, MCRYPT_MODE_ECB);
return trim($decrypted);
}
}