25

我通过AppServ使用 mcrypt_get_iv_size 函数时发现了一个问题。

我试图找到一个与解决问题相关的话题。

但是,我尝试将 libmcrypt.dll 下载到 symtem32 并通过从;extension=php_mcrypt.dllto中删除注释来编辑 php.ini extension=php_mcrypt.dll。然后重启apache。

不幸的是,重新加载页面后修改后看到结果。

它仍然错误为

致命错误:在第 36 行调用 C:\AppServ\www\folder\index.php 中未定义的函数 mcrypt_get_iv_size()

一个函数包含以下内容:

class Encryption {
    var $skey     = "SuPerEncKey2010"; // you can change it

    public  function safe_b64encode($string) {

        $data = base64_encode($string);
        $data = str_replace(array('+','/','='),array('-','_',''),$data);
        return $data;
    }

    public function safe_b64decode($string) {
        $data = str_replace(array('-','_'),array('+','/'),$string);
        $mod4 = strlen($data) % 4;
        if ($mod4) {
            $data .= substr('====', $mod4);
        }
        return base64_decode($data);
    }

    public  function encode($value){

        if(!$value){return false;}
        $text = $value;
        $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
        $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
        $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->skey, $text, MCRYPT_MODE_ECB, $iv);
        return trim($this->safe_b64encode($crypttext)); 
    }

    public function decode($value){

        if(!$value){return false;}
        $crypttext = $this->safe_b64decode($value); 
        $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
        $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
        $decrypttext = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->skey, $crypttext, MCRYPT_MODE_ECB, $iv);
        return strtolower(trim($decrypttext));
    }
}
4

4 回答 4

54

在 Ubuntu 上,使用 PHP 5 和 Apache,您必须运行:

apt-get install php5-mcrypt
php5enmod mcrypt
service apache2 restart

如果您使用的是 PHP 7:

apt install php7.0-mcrypt
于 2015-02-04T10:36:12.010 回答
9

in case of php-7:

sudo apt-get install mcrypt php7.1-mcrypt

于 2018-01-08T12:28:29.930 回答
6

http://php.net/manual/en/mcrypt.requirements.php

mcrypt 已经为 Windows 的 PHP 5.3.x 内置,所以你不需要libmcrypt.dll在你的服务器上安装。

好像php_mcrypt.dll没有加载扩展。

于 2014-12-24T08:16:58.383 回答
2

针对上述问题,我不得不在CentOS 7 x86_64上安装 mcrypt 库。

这是我为安装 php-mcrypt 和 libmcrypt 依赖项所做的工作。

wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
rpm -ivh epel-release-7-5.noarch.rpm
yum install --enablerepo="epel" php-mcrypt

使用用户“root”或 sudo

这样,无需在 php.ini 文件中添加“extension=php_mcrypt.dll”

于 2015-08-13T07:27:08.367 回答