通俗點說,用它來進行加密,同一個字符串,每次進行加密,得出的結果都是不同的,大大增強了數據安全性。同時還可設定加密後數據的有效期,簡直牛掰了php
將下面的第二份模塊代碼保存爲 Mcrypt.class.php
,而後在你須要用到的地方經過 require
的方式引入:瀏覽器
(7580是我自定義的密鑰字符串,不喜歡能夠定義其餘字符串)安全
1 ---------!這是簡單的使用方法,不要粘貼這份保存爲
<?php 2
3 require("Mcrypt.class.php") ; 4
5 $code = Mcrypt::encode('sajkfcasjcla','7580'); 6
7 echo "code-".$code; 8
9 echo "<hr>"; 10
11 $code_ans = Mcrypt::decode("$code",'7580'); 12
13 echo "answer-".$code_ans;Mcrypt.class.php!--------
瀏覽器輸出效果以下圖:ui
貼出這個類的完整代碼(請粘貼這份代碼保存爲Mcrypt.class.php
):this
1 <?php 2 3 /* 4 * @link http://kodcloud.com/ 5 * @author warlee | e-mail:kodcloud@qq.com 6 * @copyright warlee 2014.(Shanghai)Co.,Ltd 7 * @license http://kodcloud.com/tools/licenses/license.txt 8 *------ 9 * 字符串加解密類; 10 * 一次一密;且定時解密有效 11 * 可用於加密&動態key生成 12 * demo: 13 * 加密:echo Mcrypt::encode('abc','123'); 14 * 解密:echo Mcrypt::decode('9f843I0crjv5y0dWE_-uwzL_mZRyRb1ynjGK4I_IACQ','123'); 15 */ 16 17 class Mcrypt{ 18 public $default_key = 'a!takA:dlmcldEv,e'; 19 20 /** 21 * 字符加密,一次一密,可定時解密有效 22 * 23 * @param string $string 原文 24 * @param string $key 密鑰 25 * @param int $expiry 密文有效期,單位s,0 爲永久有效 26 * @return string 加密後的內容 27 */ 28 public static function encode($string,$key = '', $expiry = 0){ 29 $ckeyLength = 4; 30 $key = md5($key ? $key : $this->default_key); //解密密匙 31 $keya = md5(substr($key, 0, 16)); //作數據完整性驗證 32 $keyb = md5(substr($key, 16, 16)); //用於變化生成的密文 (初始化向量IV) 33 $keyc = substr(md5(microtime()), - $ckeyLength); 34 $cryptkey = $keya . md5($keya . $keyc); 35 $keyLength = strlen($cryptkey); 36 $string = sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string . $keyb), 0, 16) . $string; 37 $stringLength = strlen($string); 38 39 $rndkey = array(); 40 for($i = 0; $i <= 255; $i++) { 41 $rndkey[$i] = ord($cryptkey[$i % $keyLength]); 42 } 43 44 $box = range(0, 255); 45 // 打亂密匙簿,增長隨機性 46 for($j = $i = 0; $i < 256; $i++) { 47 $j = ($j + $box[$i] + $rndkey[$i]) % 256; 48 $tmp = $box[$i]; 49 $box[$i] = $box[$j]; 50 $box[$j] = $tmp; 51 } 52 // 加解密,從密匙簿得出密匙進行異或,再轉成字符 53 $result = ''; 54 for($a = $j = $i = 0; $i < $stringLength; $i++) { 55 $a = ($a + 1) % 256; 56 $j = ($j + $box[$a]) % 256; 57 $tmp = $box[$a]; 58 $box[$a] = $box[$j]; 59 $box[$j] = $tmp; 60 $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256])); 61 } 62 $result = $keyc . str_replace('=', '', base64_encode($result)); 63 $result = str_replace(array('+', '/', '='),array('-', '_', '.'), $result); 64 return $result; 65 } 66 67 /** 68 * 字符解密,一次一密,可定時解密有效 69 * 70 * @param string $string 密文 71 * @param string $key 解密密鑰 72 * @return string 解密後的內容 73 */ 74 public static function decode($string,$key = '') 75 { 76 $string = str_replace(array('-', '_', '.'),array('+', '/', '='), $string); 77 $ckeyLength = 4; 78 $key = md5($key ? $key : $this->default_key); //解密密匙 79 $keya = md5(substr($key, 0, 16)); //作數據完整性驗證 80 $keyb = md5(substr($key, 16, 16)); //用於變化生成的密文 (初始化向量IV) 81 $keyc = substr($string, 0, $ckeyLength); 82 $cryptkey = $keya . md5($keya . $keyc); 83 $keyLength = strlen($cryptkey); 84 $string = base64_decode(substr($string, $ckeyLength)); 85 $stringLength = strlen($string); 86 87 $rndkey = array(); 88 for($i = 0; $i <= 255; $i++) { 89 $rndkey[$i] = ord($cryptkey[$i % $keyLength]); 90 } 91 92 $box = range(0, 255); 93 // 打亂密匙簿,增長隨機性 94 for($j = $i = 0; $i < 256; $i++) { 95 $j = ($j + $box[$i] + $rndkey[$i]) % 256; 96 $tmp = $box[$i]; 97 $box[$i] = $box[$j]; 98 $box[$j] = $tmp; 99 } 100 // 加解密,從密匙簿得出密匙進行異或,再轉成字符 101 $result = ''; 102 for($a = $j = $i = 0; $i < $stringLength; $i++) { 103 $a = ($a + 1) % 256; 104 $j = ($j + $box[$a]) % 256; 105 $tmp = $box[$a]; 106 $box[$a] = $box[$j]; 107 $box[$j] = $tmp; 108 $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256])); 109 } 110 if ((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) 111 && substr($result, 10, 16) == substr(md5(substr($result, 26) . $keyb), 0, 16) 112 ) { 113 return substr($result, 26); 114 } else { 115 return ''; 116 } 117 } 118 }
KodCloud(可道雲) 使用 GPL v3 協議,使用時該模塊時請遵照協議加密