编程语言
首页 > 编程语言> > php-CodeIgniter框架中不建议使用函数mcrypt_create_iv()

php-CodeIgniter框架中不建议使用函数mcrypt_create_iv()

作者:互联网

<?php 
class Encryption {
    var $skey     = "1234561234561234"; // 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 trim($decrypttext);
    }

}

这是我的encryption.php文件.我试图解决此错误并进行了大量研究,但找不到合适的答案.我在PHP中较新.

错误:

A PHP Error was encountered

Severity: 8192

Message: Function mcrypt_create_iv() is deprecated

Filename: libraries/Encryption.php

Line Number: 27

解决方法:

手册http://php.net/manual/en/function.mcrypt-create-iv.php指出:

Warning

This function was DEPRECATED in PHP 7.1.0, and REMOVED in PHP 7.2.0.

Alternatives to this function include:

  • 07001

如果您不想使用random_bytes(),则有另一种解决方案,它在此处显示:

> PHP 7 – mcrypt deprecated, need alternative

标签:php,codeigniter,php-7-1
来源: https://codeday.me/bug/20191011/1889935.html