DeTechn Blog

onethink的对称加解密类

<?php
/**
 * @descript: 对称加解密类
 * @source: onthink
 */

class Encrypt{
    /**
     * 系统加密方法
     * @param string $data 要加密的字符串
     * @param string $key  加密密钥
     * @param int $expire  过期时间 单位 秒
     * @return string
     */
    public static function think_encrypt($data,&nbsp;$key = '', $expire = 0) {
        // $key&nbsp;&nbsp;=&nbsp;md5(empty($key) ? C('DATA_AUTH_KEY') : $key);
        $key&nbsp;&nbsp;=&nbsp;md5($key) ;
        $data&nbsp;=&nbsp;base64_encode($data);
        $x    = 0;
        $len&nbsp;&nbsp;=&nbsp;strlen($data);
        $l&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;strlen($key);
        $char = '';

        for ($i&nbsp;=&nbsp;0;&nbsp;$i < $len;&nbsp;$i++) {
            if ($x&nbsp;==&nbsp;$l) $x = 0;
            $char&nbsp;.=&nbsp;substr($key, $x, 1);
            $x++;
        }

        $str&nbsp;=&nbsp;sprintf(&#39;%010d&#39;,&nbsp;$expire ? $expire + time():0);

        for ($i&nbsp;=&nbsp;0;&nbsp;$i < $len;&nbsp;$i++) {
            $str&nbsp;.=&nbsp;chr(ord(substr($data, $i,&nbsp;1))&nbsp;+&nbsp;(ord(substr($char, $i, 1)))%256);
        }
        return str_replace(array('+','/','='),array('-','_',''),base64_encode($str));
    }

    /**
     * 系统解密方法
     * @param  string $data 要解密的字符串 (必须是think_encrypt方法加密的字符串)
     * @param  string $key  加密密钥
     * @return string
     */
    public static function think_decrypt($data,&nbsp;$key = ''){
        $key&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;md5($key);
        $data&nbsp;&nbsp;&nbsp;=&nbsp;str_replace(array(&#39;-&#39;,&#39;_&#39;),array(&#39;+&#39;,&#39;/&#39;),$data);
        $mod4&nbsp;&nbsp;&nbsp;=&nbsp;strlen($data) % 4;
        if ($mod4) {
        $data&nbsp;.=&nbsp;substr(&#39;====&#39;,&nbsp;$mod4);
        }
        $data&nbsp;&nbsp;&nbsp;=&nbsp;base64_decode($data);
        $expire&nbsp;=&nbsp;substr($data,0,10);
        $data&nbsp;&nbsp;&nbsp;=&nbsp;substr($data,10);

        if($expire&nbsp;&gt;&nbsp;0&nbsp;&amp;&amp;&nbsp;$expire < time()) {
            return '';
        }
        $x      = 0;
        $len&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;strlen($data);
        $l&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=&nbsp;strlen($key);
        $char&nbsp;&nbsp;&nbsp;=&nbsp;$str = '';

        for ($i&nbsp;=&nbsp;0;&nbsp;$i < $len;&nbsp;$i++) {
            if ($x&nbsp;==&nbsp;$l) $x = 0;
            $char&nbsp;.=&nbsp;substr($key, $x, 1);
            $x++;
        }

        for ($i&nbsp;=&nbsp;0;&nbsp;$i < $len;&nbsp;$i++) {
            if (ord(substr($data,&nbsp;$i, 1))<ord(substr($char,&nbsp;$i, 1))) {
                $str&nbsp;.=&nbsp;chr((ord(substr($data, $i,&nbsp;1))&nbsp;+&nbsp;256)&nbsp;-&nbsp;ord(substr($char, $i, 1)));
            }else{
                $str&nbsp;.=&nbsp;chr(ord(substr($data, $i,&nbsp;1))&nbsp;-&nbsp;ord(substr($char, $i, 1)));
            }
        }
        return base64_decode($str);
    }
}
?>

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »