KodExplorer/app/kod/Mcrypt.class.php

122 lines
4.0 KiB
PHP
Raw Normal View History

2015-03-22 20:54:54 +00:00
<?php
/*
2017-08-23 19:40:27 +00:00
* @link http://kodcloud.com/
* @author warlee | e-mail:kodcloud@qq.com
2015-03-22 20:54:54 +00:00
* @copyright warlee 2014.(Shanghai)Co.,Ltd
2017-08-23 19:40:27 +00:00
* @license http://kodcloud.com/tools/license/license.txt
2015-03-22 20:54:54 +00:00
*------
* 字符串加解密类;
* 一次一密;且定时解密有效
* 可用于加密&动态key生成
* demo
* 加密echo Mcrypt::encode('abc','123');
* 解密echo Mcrypt::decode('9f843I0crjv5y0dWE_-uwzL_mZRyRb1ynjGK4I_IACQ','123');
*/
class Mcrypt{
2016-12-21 08:01:06 +00:00
public $default_key = 'a!takA:dlmcldEv,e';
2015-03-22 20:54:54 +00:00
/**
* 字符加解密,一次一密,可定时解密有效
*
* @param string $string 原文或者密文
* @param string $operation 操作(encode | decode)
* @param string $key 密钥
* @param int $expiry 密文有效期,单位s,0 为永久有效
* @return string 处理后的 原文或者 经过 base64_encode 处理后的密文
*/
2016-12-21 08:01:06 +00:00
public static function encode($string,$key = '', $expiry = 0){
2017-08-23 19:40:27 +00:00
$ckeyLength = 4;
2015-03-22 20:54:54 +00:00
$key = md5($key ? $key : $this->default_key); //解密密匙
$keya = md5(substr($key, 0, 16)); //做数据完整性验证
$keyb = md5(substr($key, 16, 16)); //用于变化生成的密文 (初始化向量IV)
2017-08-23 19:40:27 +00:00
$keyc = substr(md5(microtime()), - $ckeyLength);
2015-03-22 20:54:54 +00:00
$cryptkey = $keya . md5($keya . $keyc);
2017-08-23 19:40:27 +00:00
$keyLength = strlen($cryptkey);
2015-03-22 20:54:54 +00:00
$string = sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string . $keyb), 0, 16) . $string;
2017-08-23 19:40:27 +00:00
$stringLength = strlen($string);
2015-03-22 20:54:54 +00:00
$rndkey = array();
for($i = 0; $i <= 255; $i++) {
2017-08-23 19:40:27 +00:00
$rndkey[$i] = ord($cryptkey[$i % $keyLength]);
2015-03-22 20:54:54 +00:00
}
$box = range(0, 255);
// 打乱密匙簿,增加随机性
for($j = $i = 0; $i < 256; $i++) {
$j = ($j + $box[$i] + $rndkey[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
// 加解密,从密匙簿得出密匙进行异或,再转成字符
$result = '';
2017-08-23 19:40:27 +00:00
for($a = $j = $i = 0; $i < $stringLength; $i++) {
2015-03-22 20:54:54 +00:00
$a = ($a + 1) % 256;
$j = ($j + $box[$a]) % 256;
$tmp = $box[$a];
$box[$a] = $box[$j];
$box[$j] = $tmp;
$result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
}
$result = $keyc . str_replace('=', '', base64_encode($result));
$result = str_replace(array('+', '/', '='),array('-', '_', '.'), $result);
return $result;
}
/**
* 字符加解密,一次一密,可定时解密有效
*
* @param string $string 原文或者密文
* @param string $operation 操作(encode | decode)
* @param string $key 密钥
* @param int $expiry 密文有效期,单位s,0 为永久有效
* @return string 处理后的 原文或者 经过 base64_encode 处理后的密文
*/
2015-10-25 15:39:11 +00:00
public static function decode($string,$key = '')
2015-03-22 20:54:54 +00:00
{
$string = str_replace(array('-', '_', '.'),array('+', '/', '='), $string);
2017-08-23 19:40:27 +00:00
$ckeyLength = 4;
2015-03-22 20:54:54 +00:00
$key = md5($key ? $key : $this->default_key); //解密密匙
$keya = md5(substr($key, 0, 16)); //做数据完整性验证
$keyb = md5(substr($key, 16, 16)); //用于变化生成的密文 (初始化向量IV)
2017-08-23 19:40:27 +00:00
$keyc = substr($string, 0, $ckeyLength);
2015-03-22 20:54:54 +00:00
$cryptkey = $keya . md5($keya . $keyc);
2017-08-23 19:40:27 +00:00
$keyLength = strlen($cryptkey);
$string = base64_decode(substr($string, $ckeyLength));
$stringLength = strlen($string);
2015-03-22 20:54:54 +00:00
$rndkey = array();
for($i = 0; $i <= 255; $i++) {
2017-08-23 19:40:27 +00:00
$rndkey[$i] = ord($cryptkey[$i % $keyLength]);
2015-03-22 20:54:54 +00:00
}
2016-12-21 08:01:06 +00:00
$box = range(0, 255);
2015-03-22 20:54:54 +00:00
// 打乱密匙簿,增加随机性
for($j = $i = 0; $i < 256; $i++) {
$j = ($j + $box[$i] + $rndkey[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
// 加解密,从密匙簿得出密匙进行异或,再转成字符
2016-12-21 08:01:06 +00:00
$result = '';
2017-08-23 19:40:27 +00:00
for($a = $j = $i = 0; $i < $stringLength; $i++) {
2015-03-22 20:54:54 +00:00
$a = ($a + 1) % 256;
$j = ($j + $box[$a]) % 256;
$tmp = $box[$a];
$box[$a] = $box[$j];
$box[$j] = $tmp;
$result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
2016-12-21 08:01:06 +00:00
}
2015-03-22 20:54:54 +00:00
if ((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0)
&& substr($result, 10, 16) == substr(md5(substr($result, 26) . $keyb), 0, 16)
) {
return substr($result, 26);
} else {
return '';
}
}
}