php aes加密

Posted 岁月如歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php aes加密相关的知识,希望对你有一定的参考价值。

    private $iv = ‘lua123456789qwer‘; #随便填写16个数
    private $key = ‘123456789asdfghjkl$$$$$‘; #随便写多少


    //加密
    function encryptlua($str) {

      //$key = $this->hex2bin($key);    
      $iv = $this->iv;

      $td = mcrypt_module_open(‘rijndael-128‘, ‘‘, ‘cbc‘, $iv);

      mcrypt_generic_init($td, $this->key, $iv);
      $encrypted = mcrypt_generic($td, $str);

      mcrypt_generic_deinit($td);
      mcrypt_module_close($td);

      return bin2hex($encrypted);
    }

    //解密
    function decryptlua($str) {
      //$key = $this->hex2bin($key);
      $str = $this->hex2bin($str);
      $iv = $this->iv;

      $td = mcrypt_module_open(‘rijndael-128‘, ‘‘, ‘cbc‘, $iv);

      mcrypt_generic_init($td, $this->key, $iv);
      $decrypted = mdecrypt_generic($td, $str);

      mcrypt_generic_deinit($td);
      mcrypt_module_close($td);

      return utf8_encode(trim($decrypted));
    }

    protected function hex2bin($hexdata) {
      $bindata = ‘‘;

      for ($i = 0; $i < strlen($hexdata); $i += 2) {
            $bindata .= chr(hexdec(substr($hexdata, $i, 2)));
      }

      return $bindata;
    }

demo

 

public function actionIndex()
    {
        $c=json_encode(‘{"state":"failed","message":"当前IP地址[119.90.13.163]:24小时次数[2],30天次数[2]","data":{"ip":"119.90.13.163","area":"中国北京北京","oneday":2,"allday":2}}‘);
        $a=$this->encryptlua($c);
        $b=json_decode($this->decryptlua($a));
        echo $a;
        echo ‘<br>‘;
        echo $b;

 

以上是关于php aes加密的主要内容,如果未能解决你的问题,请参考以下文章

PHP 中的 AES-256 加密

PHP如何使用AES加密和解密

php与java通用AES加密解密算法

JavaScript 和 PHP 中不同的 AES 加密

前端JS AES加密 后端PHP AES加解密

使用 C# 与 PHP 的 AES GCM 加密