MCRYPT_DES,ecb模式加密

MCRYPT_DES 算法,ecb模式加密:

算法总结:

1、对称算法,两端必须提供一样的密钥
2、被加密后的数据 称为 密文,原先称为明文
3、需要提供 密钥,也就是一个字符串, 然后才可以对 明文进行加密
4、取出数据时,也就是 解密的时候 必须用上 用到的字符串来对 解密
5、这样取出的数据,就会和 原来一模一样 即:
abc -> 密文 ->abc

php的 exec("ipconfig/all",$arr)命令 相当于在命令行执行了 ipconfig/all命令

下面是案例使用

mac_addr=$this->getMac(PHP_OS);
        $this->filePath="./code.txt";       
        $this->ttl="20120619";// 到期时间
        $this->salt="~!@#$";    //盐值,可提高安全性;

    }

    /**
     *加密
     *@param string $key 密钥  
     *
     */
    public function encode($key){
        $this->td=mcrypt_module_open(MCRYPT_DES,'', 'ecb','');  //采用MCRYPT_DES 算法,ecb模式
        $size=mcrypt_enc_get_iv_size($this->td);               //给初始向量设置长度
        $this->iv=mcrypt_create_iv($size,MCRYPT_DEV_RANDOM);     //创建一个初始向量iv
        $this->key_size=mcrypt_enc_get_key_size($this->td);     //返回最大可以支持的秘钥长度
        $this->key_1=substr(md5(md5($key).$this->salt),0,$this->key_size);         //通过秘钥制作$key_1
        mcrypt_generic_init($this->td, $this->key_1, $this->iv);  //初始化处理    
        //要保存的明文
        $con=$this->mac_addr.$this->ttl;
        //把明文数据加密
        $this->encode=mcrypt_generic($this->td,$con);
        //结束加密的处理
        mcrypt_generic_deinit($this->td);
        //把加密的数据存入到文件中
        $this->saveToFile();
    }
    
    /**
     *解密
     *@param string $key 密钥  
     *
     */
    public function decode($key){
        try{
            if(!file_exists($this->filePath)){   //如果文件不存在
                throw new Exception("授权文件不存在");
            }
            
            $fp=fopen($this->filePath,'r');
            $content=fread($fp,filesize($this->filePath));
            $this->key_2=substr(md5(md5($key).$this->salt),0,$this->key_size);
            //进行解密处理
            mcrypt_generic_init($this->td,$this->key_2,$this->iv); //进行初始化
            $decrypt=mdecrypt_generic($this->td,$content);           //解密数据
            $decrypt=trim($decrypt) . "\n";
            //结束初始化
            mcrypt_generic_deinit($this->td);
            mcrypt_module_close($this->td);
            return $decrypt;
        }catch(Exception $e){
            echo $e->getMessage();
        }
    }
    public function saveToFile(){
        try{
            $fp=fopen($this->filePath,'w');  //打开一个文件流
            if(!$fp){
                throw new Exception("文件流打开失败");         
            }
            fwrite($fp, $this->encode);
            fclose($fp);   
        }catch(Exception $e){
            echo $e->getMessage();
        }

    }
    public function getMac($os_type){
         switch ( strtolower($os_type) ){ 
                      case "linux": 

                                $this->forLinux(); 
                                break; 
                      case "solaris": 
                                break; 
                      case "unix": 
                                 break; 
                       case "aix": 
                                 break; 
                       default: 
                               $this->forWindows(); 
                               break; 
         }
        $temp_array=array();
    
        foreach ($this->arr as $value) {
                    if (preg_match("/[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f][:-]"."[0-9a-f][0-9a-f]/i",$value,$temp_array )){
                            $mac_addr = $temp_array[0]; 
                            break; 
                    }        
        }
    
        unset($temp_array);
        return $mac_addr;
    }

    /*
     *window下执行ipconfig命令
     */
    public function forWindows(){
        @exec("ipconfig /all",$this->arr);
        if($this->arr){
            return $this->arr;
        }else{
            $ipconfig=$_SERVER['WINDIR'].'\system32\ipconfig.exe';
            if(is_file($ipconfig))
            {
                @exec($ipconfig.'/all',$this->arr);
            }else{
                @exec($_SERVER['WINDIR'].'\system32\ipconfig.exe /all',$this->arr);
            }
            return $this->arr;
        }
    }
    /*
     *linux下执行ipconfig命令
     */
    public function forLinux(){
        @exec("ipconfig -a",$this->arr);
        return $this->arr;
    }
}
$auth = new AuthCode();
$auth->encode("~!@#$%^");
echo $auth->decode("~!@#$%^");

?>

你可能感兴趣的:(MCRYPT_DES,ecb模式加密)