>  기사  >  백엔드 개발  >  PHP 암호화 및 복호화 처리 클래스

PHP 암호화 및 복호화 처리 클래스

WBOY
WBOY원래의
2016-07-25 08:42:28813검색
  1. class SysCrypt {
  2. private $crypt_key;
  3. // 构造函数
  4. public function __construct($crypt_key) {
  5. $this -> crypt_key = $crypt_key;
  6. }
  7. public function php_encrypt($txt) {
  8. srand((double)microtime() * 1000000);
  9. $encrypt_key = md5(rand(0,32000));
  10. $ctr = 0;
  11. $tmp = '';
  12. for($i = 0;$i $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  13. $tmp .= $encrypt_key[$ctr].($txt[$i]^$encrypt_key[$ctr ]);
  14. }
  15. return base64_encode(self::__key($tmp,$this -> crypt_key));
  16. }
  17. public function php_decrypt($txt) {
  18. $txt = self::__key(base64_decode($txt),$this -> crypt_key);
  19. $tmp = '';
  20. for($i = 0;$i < strlen($txt); $i ) {
  21. $md5 = $txt[$i];
  22. $tmp .= $txt[ $i] ^ $md5;
  23. }
  24. return $tmp;
  25. }
  26. private function __key($txt,$encrypt_key) {
  27. $encrypt_key = md5($encrypt_key);
  28. $ctr = 0;
  29. $tmp = '';
  30. for($i = 0; $i < strlen($txt); $i ) {
  31. $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
  32. $tmp .= $txt[$i] ^ $encrypt_key[$ctr ];
  33. }
  34. return $tmp;
  35. }
  36. public function __destruct() {
  37. $this -> crypt_key = null;
  38. }
  39. }
  40. $sc = new SysCrypt('phpwms');
  41. $text = '110';
  42. print($sc -> php_encrypt($text));
  43. print('
    ');
  44. print($sc -> php_decrypt($sc -> php_encrypt($text)));
  45. ?>
复制代码

암호화 및 복호화, PHP


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.