一段php加密解密的代码
作者:bea
<?php $key="Thisissupposedtobeasecretkey!!!"; functionkeyED($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($e
<?php
$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";
?>
有用 |
无用
$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";
?>
猜你喜欢
您可能感兴趣的文章:
- 小结下MySQL中文乱码,phpmyadmin乱码,php乱码 产生原因及其解决方法
- 从一个不错的留言本弄的mysql数据库操作类
- 利用static实现表格的颜色隔行显示的代码
- MySQL数据库转移,access,sql server 转 MySQL 的图文教程
- Bo-Blog专用的给Windows服务器的IIS Rewrite程序
- 海河写的 Discuz论坛帖子调用js的php代码
- discuz 首页四格:最新话题+最新回复+热门话题+精华文章插件
- PHP下几种删除目录的方法总结
- wordpress之wp-settings.php
- PHP4和PHP5性能测试和对比 测试代码与环境
- 在PHP里得到前天和昨天的日期的代码
- PHP与MySQL开发中页面出现乱码的一种解决方法
- 真正的ZIP文件操作类(php)
- php 用sock技术发送邮件的函数
- php中ob(Output Buffer 输出缓冲)函数使用方法
- 在普通HTTP上安全地传输密码
- 发布一个迷你php+AJAX聊天程序[聊天室]提供下载
- PHP+FLASH实现上传文件进度条相关文件 下载
- Discuz5.5.0代码高亮显示+运行代码框合成插件 下载