PHP implementation of cryptographic decryption processing class, PHP implementation of encryption and decryption
This paper describes the cryptographic decryption processing class implemented by PHP. Share to everyone for your reference, as follows:
<?php/*=========================================================== = Copyright agreement: = GPL (The GNU general public LICENSE Vers Ion 2, June 1991) =------------------------------------------------------------= File name: cls.sys_crypt.php = Pick To: PHP cryptographic decryption Processing class = Version: 1.0 = reference: Discuz Forum Passport-related function =------------------------------------------------------------= last update Date: 2007-12-09 ============================================================*/class Syscrypt {private $crypt _key;// Constructor public Function __construct ($crypt _key) {$this, crypt_key = $crypt _key;} public Function Php_encrypt ($txt) { Srand (Double) microtime () * 1000000); $encrypt _key = MD5 (rand (0,32000)); $ctr = 0; $tmp = "; for ($i = 0; $i
Crypt_key)); Public Function Php_decrypt ($txt) {$txt = Self::__key (Base64_decode ($txt), $this-Crypt_key); $tmp = "; for ($i = 0; $i < strlen ($txt); $i + +) {$MD 5 = $txt [$i]; $tmp. = $txt [+ + $i] ^ $MD 5; } return $tmp; } Private Function __key ($txt, $encrypt _key) {$encrypt _key = MD5 ($encrypt _key); $ctr = 0; $tmp = "; for ($i = 0; $i < strlen ($txt); $i + +) {$ctr = $ctr = = strlen ($encrypt _key)? 0: $ctr; $tmp. = $txt [$i] ^ $encrypt _key[$ctr + +]; } return $tmp; Public Function __destruct () {$this-crypt_key = null;}} Execute code $SC = new Syscrypt (' phpwms '); $text = ' abc10000008910000000990099hh '; Data print that requires encryption ($SC-Php_encrypt ($text)); Encrypt print ('
'), print ($SC-Php_decrypt ($SC-Php_encrypt ($text)));//Decrypt?>
About encryption and decryption of interested friends can also refer to the site online tools:
Password Security online detection
High Strength Password Generator
MD5 Online Encryption Tool
Thunderbolt, Express, whirlwind URL encryption/decryption tools
Read more about PHP Topics: Php encryption method Summary, PHP operations and Operator Usage Summary, PHP Network Programming Tips Summary, PHP Basic Grammar Primer Tutorial, PHP Operations Office documentation Tips Summary (including Word,excel, access,ppt), "PHP Date and Time usage summary", "PHP primer for Object-oriented programming", "PHP String Usage Summary", "Getting Started with Php+mysql database operations" and "PHP Common Database Operations Skills Summary"
I hope this article is helpful to you in PHP programming.
http://www.bkjia.com/PHPjc/1126072.html www.bkjia.com true http://www.bkjia.com/PHPjc/1126072.html techarticle PHP Implementation of the encryption and decryption processing class, PHP implementation of encryption and decryption of this article describes the PHP implementation of the cryptographic decryption processing class. Share to everybody for reference, concrete as follows: PHP/*========== ...