首页 > php教程 > php手册 > 正文

php对称加密算法示例

WBOY
发布: 2016-06-06 20:22:49
原创
1839 人浏览过

这篇文章主要介绍了php对称加密算法示例,需要的朋友可以参考下


php对称加密算法

KEY 是之前定义的常量

复制代码 代码如下:


Mcrypt::encrypt();
Mcrypt::decrypt();

复制代码 代码如下:


defined('ROOT') or exit('Access Denied');

class Mcrypt{

 public static function encrypt($code){
  return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, md5(KEY), $code, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND)));
 }

 public static function decrypt($code){
  return mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5(KEY), base64_decode($code), MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND));
 }

}

常用对称加密算法(DES/AES)类

xcrypt.php

复制代码 代码如下:


/**
 * 常用对称加密算法类
 * 支持密钥:64/128/256 bit(字节长度8/16/32)
 * 支持算法:DES/AES(根据密钥长度自动匹配使用:DES:64bit AES:128/256bit)
 * 支持模式:CBC/ECB/OFB/CFB
 * 密文编码:base64字符串/十六进制字符串/二进制字符串流
 * 填充方式: PKCS5Padding(DES)
 *
 * @author: linvo
 * @version: 1.0.0
 * @date: 2013/1/10
 */ 
class Xcrypt{ 

    private $mcrypt; 
    私人 $key; 
    私人$模式; 
    私人 $iv; 
    私人 $blocksize; 

    /**
     * 构造函数
     *
     * @param string 密钥
     * @param string 模式
     * @param string 向量("off":不使用 / "auto":自动 / 其他:指定值,,长度同密钥)
    */ 
    public function __construct($key, $mode = 'cbc', $iv = "off"){ 
        switch (strlen($key)) { 
        情况 8: 
            $this->mcrypt = MCRYPT_DES; 
            休息; 
        情况 16: 
            $this->mcrypt = MCRYPT_RIJNDAEL_128; 
            休息; 
        案例 32: 
            $this->mcrypt = MCRYPT_RIJNDAEL_256; 
            休息; 
        默认值: 
            die("密钥大小必须为 8/16/32"); 
        } 

        $this->key = $key; 

        switch (strtolower($mode)){ 
        case 'ofb': 
            $this->mode = MCRYPT_MODE_OFB; 
            if ($iv == 'off') die('OFB 必须给出 IV'); //OFB 必须有工作
           break; 
        case 'cfb': 
            $this->mode = MCRYPT_MODE_CFB; 
            if ($iv == 'off') die('CFB 必须给出 IV'); //CFB 必须有工作
           break; 
        case 'ecb': 
            $this->mode = MCRYPT_MODE_ECB; 
            $iv = '关闭'; //ECB 不需要提供 
           break; 
        case 'cbc': 
        默认值: 
            $this->mode = MCRYPT_MODE_CBC; 
        } 

        switch (strtolower($iv)){ 
        case "off": 
            $this->iv = null; 
            休息; 
        case "auto": 
            $source = PHP_OS=='WINNT' ? MCRYPT_RAND:MCRYPT_DEV_RANDOM; 
            $this->iv = mcrypt_create_iv(mcrypt_get_block_size($this->mcrypt, $this->mode), $source); 
            休息; 
        默认值: 
            $this->iv = $iv; 
        } 

    
    } 

 
    /**
     * 获取向量值
     * @param string 向量值编码(base64/hex/bin)
     * @return string 向量值
    */ 
    public function getIV($code = 'base64'){ 
        switch ($code){ 
        case 'base64': 
            $ret = base64_encode($this->iv); 
            休息; 
        case 'hex': 
            $ret = bin2hex($this->iv); 
            休息; 
        case 'bin': 
        默认值: 
            $ret = $this->iv; 
        } 
        返回 $ret; 
    } 

 
    /**
     * 加密
     * @param string 明文
     * @param string 密文编码(base64/hex/bin)
     * @return string 密文
    */ 
    public function encrypt($str, $code = 'base64'){ 
        if ($this->mcrypt == MCRYPT_DES) $str = $this->_pkcs5Pad($str); 

        if (isset($this->iv)) { 
            $result = mcrypt_encrypt($this->mcrypt, $this->key, $str, $this->mode , $this->iv);   
        } else { 
            @$result = mcrypt_encrypt($this->mcrypt, $this->key, $str, $this->mode);   
        } 

        switch ($code){ 
        case 'base64': 
            $ret = base64_encode($result); 
            休息; 
        case 'hex': 
            $ret = bin2hex($result); 
            休息; 
        case 'bin': 
        默认值: 
            $ret = $result; 
        } 

        返回 $ret; 

    } 

    /**
     * 解密 
     * @param string 密文
     * @param string 密文编码(base64/hex/bin)
     * @return string 明文
    */ 
    公共函数解密($str, $code = "base64"){     
        $ret = false; 

        switch ($code){ 
        case 'base64': 
            $str = base64_decode($str); 
            休息; 
        case 'hex': 
            $str = $this->_hex2bin($str); 
            休息; 
        case 'bin': 
        默认值: 
        } 

        if ($str !== false){ 
            if (isset($this->iv)) { 
                $ret = mcrypt_decrypt($this->mcrypt, $this->key, $str, $this->mode, $this->iv);   
            } else { 
                @$ret = mcrypt_decrypt($this->mcrypt, $this->key, $str, $this->mode);   
            } 
            if ($this->mcrypt == MCRYPT_DES) $ret = $this->_pkcs5Unpad($ret); 
            $ret = trim($ret); 
        } 

        返回 $ret;  
    }

    私有函数 _pkcs5Pad($text){ 
        $this->blocksize = mcrypt_get_block_size($this->mcrypt, $this->mode);   
        $pad = $this->blocksize - (strlen($text) % $this->blocksize); 
        返回 $text 。 str_repeat(chr($pad), $pad); 
    } 

    私有函数 _pkcs5Unpad($text){ 
        $pad = ord($text{strlen($text) - 1}); 
        if ($pad > strlen($text)) 返回 false; 
        if (strspn($text, chr($pad), strlen($text) - $pad) != $pad) return false; 
        $ret = substr($text, 0, -1 * $pad); 
        返回 $ret; 
    } 

    私有函数 _hex2bin($hex = false){ 
        $ret = $hex !== false && preg_match('/^[0-9a-fA-F] $/i ', $十六进制) ? pack("H*", $hex) : false;     
        返回 $ret; 
    }

上面类的使用方法

复制代码代码如下:

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板