php自定义加密解密实现代码

文章介绍了关于php 自定义加密解密,很多朋友都是用php自带的,我们如果自己写个会怎么样呢,下面看代码.

php 自定义加密解密实现代码如下:

  1. <?php
  2. // 说明:PHP 写的加密函数,支持私人密钥
  3. // 整理:http://www.phpfensi.com
  4. function keyED($txt,$encrypt_key)
  5. {
  6. $encrypt_key = md5($encrypt_key);
  7. $ctr=0;
  8. $tmp = "";
  9. for ($i=0;$i<strlen($txt);$i++)
  10. {
  11. if ($ctr==strlen($encrypt_key)) $ctr=0;
  12. $tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
  13. $ctr++;
  14. }
  15. return $tmp;
  16. }
  17. function encrypt($txt,$key)
  18. {
  19. srand((double)microtime()*1000000);
  20. $encrypt_key = md5(rand(0,32000));
  21. $ctr=0;
  22. $tmp = "";
  23. for ($i=0;$i<strlen($txt);$i++)
  24. {
  25. if ($ctr==strlen($encrypt_key)) $ctr=0;
  26. $tmp.= substr($encrypt_key,$ctr,1) . (substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));
  27. $ctr++;
  28. }
  29. return keyED($tmp,$key);
  30. }
  31. function decrypt($txt,$key)
  32. {
  33. $txt = keyED($txt,$key);
  34. $tmp = "";
  35. for ($i=0;$i<strlen($txt);$i++)
  36. {
  37. $md5 = substr($txt,$i,1);
  38. $i++;
  39. $tmp.= (substr($txt,$i,1) ^ $md5);
  40. }
  41. return $tmp;
  42. }
  43. $key = "YITU.org";
  44. $string = "我是加密字符";
  45. // encrypt $string, and store it in $enc_text
  46. $enc_text = encrypt($string,$key);
  47. // decrypt the encrypted text $enc_text, and store it in $dec_text
  48. $dec_text = decrypt($enc_text,$key);
  49. print "加密的 text : $enc_text <Br> ";
  50. print "解密的 text : $dec_text <Br> ";
  51. ?>