当前位置: 首页 > 图文教程 > 网络编程 > PHP > 实例应用:使用PHP来进行加密与解密

PHP
PHP4.03在linux下的安装
PHP4.04在win98下的安装
实例学习 PHP 之表单处理篇(一)
PHP4.04在英文win2000下的安装
PHP3 入门教程(极短篇)---什么是 PHP ?
PHP3 入门教程(极短篇)---初窥门径
PHP3 入门教程(极短篇)---INCLUDE 语句
PHP3 入门教程(极短篇)---HTML 表单和变量
PHP3 入门教程(极短篇)--MySQL 数据库界面-
PHP3 入门教程(极短篇)---要注意的地方
PHP3的MicrosoftSQL数据库函数
PHP中类的理解和应用[一]
PHP中类的理解和应用[二]
在服务器上安装、使用MySQL的注意事项
PHP+Apache在Win9X配置安装
把PHP4安装到Win2000的IIS5中
正则表达式使用详解(一)
正则表达式使用详解(二)
来个PHP计数器怎样?
用php实现广告轮播

实例应用:使用PHP来进行加密与解密


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 71 ::
收藏到网摘: n/a

<?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>";
print "Encrypted text : $enc_text <Br>";
print "Decrypted text : $dec_text <Br>";
?>