我有这个用于解密文件的 PHP 函数(使用 PHP 5.3),它曾经工作得很好,但现在我搬到了 Amazon EC2(基于 Amazon Linux Image 2012.3),似乎 mcrypt 安装已损坏或根本不可用。
初步测试表明,文件解密确实适用于较小的文件,但不适用于 20MB 以上的文件(这不是特别大的文件)。
我将问题追踪到这一行,这导致了错误 500(我没有收到mcrypt_module_open is undefined
,只是 500 服务器错误)
$td = mcrypt_module_open ('rijndael-128', '', 'cbc', '');
奇怪的是,我检查了 /etc/php.ini,我根本看不到 mcrypt(当然假设我正在查看正确的 php.ini/path!)
PHP代码/功能是:
function decrypt_file ($inputfile, $outputfile)
{
$key = FILE_KEY; // <-- assign private key
$buffersize = 16384;
// Open $inputfile for reading binary
$input = fopen ($inputfile, 'rb');
// Error opening $inputfile, return false
if (!$input)
return false;
// Open $outputfile for writing binary
$output = fopen ($outputfile, 'wb');
// Error opening $outputfile, return false
if (!$output)
return false;
// Open the cipher module
$td = mcrypt_module_open ('rijndael-128', '', 'cbc', '');
// Read the IV from $inputfile
$iv = fread ($input, 16);
// Compute the SHA512 of the IV (salt) and Key and use 32 bytes (256 bit) of the result as the encryption key
$keyhash = substr (hash ('sha512', $iv . $key, true), 0, 32);
// Intialize encryption
mcrypt_generic_init ($td, $keyhash, $iv);
while (!feof ($input))
{
$buffer = fread ($input, $buffersize);
// Encrypt the data
$buffer = mdecrypt_generic ($td, $buffer);
// Remove padding for last block
if (feof ($input))
{
$padsize = ord ($buffer[strlen ($buffer) - 1]);
$buffer = substr ($buffer, 0, strlen ($buffer) - $padsize);
}
// Write the encrypted data to $output
fwrite ($output, $buffer, strlen ($buffer));
}
fclose ($input);
fclose ($output);
// Deinitialize encryption module
mcrypt_generic_deinit ($td);
// Close encryption module
mcrypt_module_close ($td);
return true;
}
任何人都知道如何解决这个问题?我正在使用 PHP 5.3 和 CodeIgniter 2.1(认为这很可能与 CodeIgniter 无关)