SysCrypt.class.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /*===========================================================
  3. = 版权协议:
  4. = GPL (The GNU GENERAL PUBLIC LICENSE Version 2, June 1991)
  5. =------------------------------------------------------------
  6. = 文件名称:cls.sys_crypt.php
  7. = 摘 要:php加密解密处理类
  8. = 版 本:1.0
  9. = 参 考:Discuz论坛的passport相关函数
  10. =------------------------------------------------------------
  11. = Script Written By PHPWMS项目组
  12. = 最后更新:xinge
  13. = 最后日期:2007-12-09
  14. $sc = new SysCrypt('phpwms');
  15. $text = '110';
  16. print($sc -> php_encrypt($text));
  17. print('<br>');
  18. print($sc -> php_decrypt($sc -> php_encrypt($text)));
  19. ============================================================*/
  20. class SysCrypt extends Think {
  21. private $crypt_key;
  22. // 构造函数
  23. public function __construct($crypt_key) {
  24. $this -> crypt_key = $crypt_key;
  25. }
  26. public function php_encrypt($txt) {
  27. srand((double)microtime() * 1000000);
  28. $encrypt_key = md5(rand(0,32000));
  29. $ctr = 0;
  30. $tmp = '';
  31. for($i = 0;$i<strlen($txt);$i++) {
  32. $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  33. $tmp .= $encrypt_key[$ctr].($txt[$i]^$encrypt_key[$ctr++]);
  34. }
  35. return base64_encode(self::__key($tmp,$this -> crypt_key));
  36. }
  37. public function php_decrypt($txt) {
  38. $txt = self::__key(base64_decode($txt),$this -> crypt_key);
  39. $tmp = '';
  40. for($i = 0;$i < strlen($txt); $i++) {
  41. $md5 = $txt[$i];
  42. $tmp .= $txt[++$i] ^ $md5;
  43. }
  44. return $tmp;
  45. }
  46. private function __key($txt,$encrypt_key) {
  47. $encrypt_key = md5($encrypt_key);
  48. $ctr = 0;
  49. $tmp = '';
  50. for($i = 0; $i < strlen($txt); $i++) {
  51. $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  52. $tmp .= $txt[$i] ^ $encrypt_key[$ctr++];
  53. }
  54. return $tmp;
  55. }
  56. public function __destruct() {
  57. $this -> crypt_key = null;
  58. }
  59. }
  60. ?>