一段php加密解密的代码
2015-01-24信息快讯网
$key = "This is supposed to be a secret key !!!";
function keyED($txt,$encrypt_key)
{
$encrypt_key = md5($encrypt_key);
$ctr=0;
$tmp = "";
for ($i=0;$i<strlen($txt);$i++)
{
if ($ctr==strlen($encrypt_key)) $ctr=0;
$tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
$ctr++;
}
return $tmp;
}
function encrypt($txt,$key)
{
srand((double)microtime()*1000000);
$encrypt_key = md5(rand(0,32000));
$ctr=0;
$tmp = "";
for ($i=0;$i<strlen($txt);$i++)
{
if ($ctr==strlen($encrypt_key)) $ctr=0;
$tmp.= substr($encrypt_key,$ctr,1) .
(substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));
$ctr++;
}
return keyED($tmp,$key);
}
function decrypt($txt,$key)
{
$txt = keyED($txt,$key);
$tmp = "";
for ($i=0;$i<strlen($txt);$i++)
{
$md5 = substr($txt,$i,1);
$i++;
$tmp.= (substr($txt,$i,1) ^ $md5);
}
return $tmp;
}
$string = "Hello World !!!";
// encrypt $string, and store it in $enc_text
$enc_text = encrypt($string,$key);
// decrypt the encrypted text $enc_text, and store it in $dec_text
$dec_text = decrypt($enc_text,$key);
print "Original text : $string <Br>\n";
print "Encrypted text : $enc_text <Br>\n";
print "Decrypted text : $dec_text <Br>\n";
?>
关于在php.ini中添加extension=php_mysqli.dll指令的说明
Win2003下IIS+PHP+MySQL+Zend配置步骤详解第1/2页
php 中的str_replace 函数总结
解决php中Cannot send session cache limiter 的问题的方法
15种PHP Encoder的比较
给apache2.2加上mod_encoding模块後 php5.2.0 处理url出现bug
php中的实现trim函数代码
使用TinyButStrong模板引擎来做WEB开发
15种PHP Encoder的比较
PHP has encountered an Access Violation
require(),include(),require_once()和include_once()的异同
PHP+javascript模拟Matrix画面
用DBSQL类加快开发MySQL数据库程序的速度
基于mysql的bbs设计(五)
基于mysql的bbs设计(四)
基于mysql的bbs设计(一)
基于mysql的bbs设计(二)
基于qmail的完整WEBMAIL解决方案安装详解
PHP开发文件系统实例讲解
用Zend Encode编写开发PHP程序
Content-type 的说明
substr()函数中文版
Search Engine Friendly的URL设计
PHP - Html Transfer Code
Zend公司全球首推PHP认证
Zend引擎的发展 [15]
Extended CHM PHP 语法手册之 DIY
BS结构中使用PHP访问ORACLE LOB
新版百元变化更能防伪 收藏越稀缺越值钱