PHP implementation of encryption and decryption processing class _php skills

Source: Internet
Author: User
Tags crypt

The examples in this article describe the cryptographic decryption processing classes implemented in PHP. Share to everyone for your reference, specific as follows:

<?php/*=========================================================== = Copyright agreement: = GPL (The GNU general public LICENSE V Ersion 2, June 1991) =------------------------------------------------------------= File name: cls.sys_crypt.php = Summary: PHP Plus Secret decryption Processing class = Version: 1.0 = reference: Discuz Forum's passport related function =------------------------------------------------------------= Last Updated Date:
 2007-12-09 ============================================================*/class Syscrypt {private $crypt _key;
 Constructor public Function __construct ($crypt _key) {$this-> crypt_key = $crypt _key;
  The Public Function Php_encrypt ($txt) {srand (double) microtime () * 1000000);
  $encrypt _key = MD5 (rand (0,32000));
  $ctr = 0;
  $tmp = ';
   for ($i = 0; $i <strlen ($txt); $i + +) {$ctr = $ctr = = strlen ($encrypt _key)? 0: $ctr; $tmp. = $encrypt _key[$ctr].
  ($txt [$i]^ $encrypt _key[$ctr + +]);
 Return Base64_encode (Self::__key ($tmp, $this-> crypt_key)); The 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;
 The Public Function __destruct () {$this-> crypt_key = null;
 }//Execute code $SC = new Syscrypt (' phpwms '); $text = ' abc10000008910000000990099hh '; Need to encrypt the data print ($SC-> php_encrypt ($text));
 Encrypted print (' <br> '); Print ($SC-> php_decrypt ($sc-> php_encrypt ($text)));

 Decryption?>

About encryption and decryption interested friends can also refer to the site online tools:

Password Security online detection

High Strength Password Generator

MD5 Online Encryption Tool

Thunderbolt, Express, Cyclone URL encryption/decryption tool

More about PHP related content to view the site topics: "PHP Encryption Method Summary", "PHP operation and operator Usage Summary", "PHP Network Programming Skills Summary", "PHP basic Grammar Introductory Course", "PHP operation Office Document Skills Summary (including Word,excel, Access,ppt), "The PHP date and time usage summary", "PHP object-oriented Programming Introduction Tutorial", "PHP string (String) Usage Summary", "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation skill Summary"

I hope this article will help you with the PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.