search
HomeBackend DevelopmentPHP Tutorial[笔记]几种PHP加密算法

1. Discuz authcode

<?php  /**  * $string 明文或密文  * $operation 加密ENCODE或解密DECODE  * $key 密钥  * $expiry 密钥有效期  */   function  authcode ( $string ,  $operation  =  'DECODE' ,  $key  =  '' ,  $expiry  =  0 ) {      // 动态密匙长度,相同的明文会生成不同密文就是依靠动态密匙     // 加入随机密钥,可以令密文无任何规律,即便是原文和密钥完全相同,加密结果也会每次不同,增大破解难度。     // 取值越大,密文变动规律越大,密文变化 = 16 的 $ckey_length 次方     // 当此值为 0 时,则不产生随机密钥      $ckey_length  =  4 ;         // 密匙     // $GLOBALS['discuz_auth_key'] 这里可以根据自己的需要修改      $key  =  md5 ( $key  ?  $key  :  $GLOBALS [ 'discuz_auth_key' ]);          // 密匙a会参与加解密      $keya  =  md5 ( substr ( $key ,  0 ,  16 ));      // 密匙b会用来做数据完整性验证      $keyb  =  md5 ( substr ( $key ,  16 ,  16 ));      // 密匙c用于变化生成的密文      $keyc  =  $ckey_length  ? ( $operation  ==  'DECODE'  ?  substr ( $string ,  0 ,  $ckey_length ):  substr ( md5 ( microtime ()), - $ckey_length )) :  '' ;      // 参与运算的密匙      $cryptkey  =  $keya . md5 ( $keya . $keyc );      $key_length  =  strlen ( $cryptkey );      // 明文,前10位用来保存时间戳,解密时验证数据有效性,10到26位用来保存$keyb(密匙b),解密时会通过这个密匙验证数据完整性     // 如果是解码的话,会从第$ckey_length位开始,因为密文前$ckey_length位保存 动态密匙,以保证解密正确      $string  =  $operation  ==  'DECODE'  ?  base64_decode ( substr ( $string ,  $ckey_length )) :  sprintf ( '%010d' ,  $expiry  ?  $expiry  +  time () :  0 ). substr ( md5 ( $string . $keyb ),  0 ,  16 ). $string ;      $string_length  =  strlen ( $string );      $result  =  '' ;      $box  =  range ( 0 ,  255 );      $rndkey  = array();      // 产生密匙簿      for( $i  =  0 ;  $i  <=  255 ;  $i ++) {          $rndkey [ $i ] =  ord ( $cryptkey [ $i  %  $key_length ]);     }      // 用固定的算法,打乱密匙簿,增加随机性,好像很复杂,实际上并不会增加密文的强度      for( $j  =  $i  =  0 ;  $i  <  256 ;  $i ++) {          $j  = ( $j  +  $box [ $i ] +  $rndkey [ $i ]) %  256 ;          $tmp  =  $box [ $i ];          $box [ $i ] =  $box [ $j ];          $box [ $j ] =  $tmp ;     }      // 核心加解密部分      for( $a  =  $j  =  $i  =  0 ;  $i  <  $string_length ;  $i ++) {          $a  = ( $a  +  1 ) %  256 ;          $j  = ( $j  +  $box [ $a ]) %  256 ;          $tmp  =  $box [ $a ];          $box [ $a ] =  $box [ $j ];          $box [ $j ] =  $tmp ;          // 从密匙簿得出密匙进行异或,再转成字符          $result  .=  chr ( ord ( $string [ $i ]) ^ ( $box [( $box [ $a ] +  $box [ $j ]) %  256 ]));     }     if( $operation  ==  'DECODE' ) {          // substr($result, 0, 10) == 0 验证数据有效性         // substr($result, 0, 10) - time() > 0 验证数据有效性         // substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16) 验证数据完整性         // 验证数据有效性,请看未加密明文的格式          if(( substr ( $result ,  0 ,  10 ) ==  0  ||  substr ( $result ,  0 ,  10 ) -  time () >  0 ) &&  substr ( $result ,  10 ,  16 ) ==  substr ( md5 ( substr ( $result ,  26 ). $keyb ),  0 ,  16 )) {             return  substr ( $result ,  26 );         } else {             return  '' ;         }     } else {          // 把动态密匙保存在密文里,这也是为什么同样的明文,生产不同密文后能解密的原因         // 因为加密后的密文可能是一些特殊字符,复制过程可能会丢失,所以用base64编码          return  $keyc . str_replace ( '=' ,  '' ,  base64_encode ( $result ));     } }      $a  =  "www.test.com" ;  $b  =  authcode ( $a ,  "ENCODE" ,  "abc123" ); echo  $b . "<br/>" ; echo  authcode ( $b ,  "DECODE" ,  "abc123" );

2. 简单对称加密算法

<?php  /**  * 简单对称加密算法之加密  * @param String $string 需要加密的字串  * @param String $skey 加密EKY  * @author Anyon Zou <zoujingli@qq.com>  * @date 2013-08-13 19:30  * @update 2014-10-10 10:10  * @return String  */   function  encode ( $string  =  '' ,  $skey  =  'cxphp' ) {      $strArr  =  str_split ( base64_encode ( $string ));      $strCount  =  count ( $strArr );     foreach ( str_split ( $skey ) as  $key  =>  $value )          $key  <  $strCount  &&  $strArr [ $key ].= $value ;     return  str_replace (array( '=' ,  '+' ,  '/' ), array( 'O0O0O' ,  'o000o' ,  'oo00o' ),  join ( '' ,  $strArr ));  }   /**  * 简单对称加密算法之解密  * @param String $string 需要解密的字串  * @param String $skey 解密KEY  * @author Anyon Zou <zoujingli@qq.com>  * @date 2013-08-13 19:30  * @update 2014-10-10 10:10  * @return String  */   function  decode ( $string  =  '' ,  $skey  =  'cxphp' ) {      $strArr  =  str_split ( str_replace (array( 'O0O0O' ,  'o000o' ,  'oo00o' ), array( '=' ,  '+' ,  '/' ),  $string ),  2 );      $strCount  =  count ( $strArr );     foreach ( str_split ( $skey ) as  $key  =>  $value )          $key  <=  $strCount   && isset( $strArr [ $key ]) &&  $strArr [ $key ][ 1 ] ===  $value  &&  $strArr [ $key ] =  $strArr [ $key ][ 0 ];     return  base64_decode ( join ( '' ,  $strArr ));  } echo  '<pre class="brush:php;toolbar:false">' ;  $str  =  '56,15123365247,54,四大古典风格' ; echo  "string : "  .  $str  .  " <br />" ; echo  "encode : "  . ( $enstring  =  encode ( $str )) .  '<br />' ; echo  "decode : "  .  decode ( $enstring );

3. DES加密解密

<?php  class  DES {     public  $key ;     public  $iv ;  //偏移量        function  __construct ( $key ,  $iv = 0 ){          $this -> key  =  $key ;         if( $iv  ==  0 ){              $this -> iv  =  $key ;         }else{              $this -> iv  =  $iv ;         }     }        //加密      function  encrypt ( $str ){                 $size  =  mcrypt_get_block_size  (  MCRYPT_DES ,  MCRYPT_MODE_CBC  );          $str  =  $this -> pkcs5Pad  (  $str ,  $size  );                    $data = mcrypt_cbc ( MCRYPT_DES ,  $this -> key ,  $str ,  MCRYPT_ENCRYPT ,  $this -> iv );          //$data=strtoupper(bin2hex($data)); //返回大写十六进制字符串          return  base64_encode ( $data );     }            //解密      function  decrypt ( $str ){          $str  =  base64_decode  ( $str );          //$strBin = $this->hex2bin( strtolower($str));          $str  =  mcrypt_cbc ( MCRYPT_DES ,  $this -> key ,  $str ,  MCRYPT_DECRYPT ,  $this -> iv  );          $str  =  $this -> pkcs5Unpad (  $str  );         return  $str ;     }       function  hex2bin ( $hexData ){          $binData  =  "" ;         for( $i  =  0 ;  $i  <  strlen  (  $hexData  );  $i  +=  2 ){              $binData  .=  chr ( hexdec ( substr ( $hexData ,  $i ,  2 )));         }         return  $binData ;     }       function  pkcs5Pad ( $text ,  $blocksize ){          $pad  =  $blocksize  - ( strlen  (  $text  ) %  $blocksize );         return  $text  .  str_repeat  (  chr  (  $pad  ),  $pad  );     }       function  pkcs5Unpad ( $text ){          $pad  =  ord  (  $text  { strlen  (  $text  ) -  1 } );         if ( $pad  >  strlen  (  $text  ))             return  false ;         if ( strspn  (  $text ,  chr  (  $pad  ),  strlen  (  $text  ) -  $pad  ) !=  $pad )             return  false ;         return  substr  (  $text ,  0 , -  1  *  $pad  );     } }  $str  =  'abc' ;  $key =  '12345678' ;  //8位内  $crypt  = new  DES ( $key );  $mstr  =  $crypt -> encrypt ( $str );  $str  =  $crypt -> decrypt ( $mstr );   echo   $str . ' <=> ' . $mstr ;

4. PHP hex2bin

<?php  function  hexXbin ( $data ,  $types  =  false ){     if(! is_string ( $data ))         return  0 ;     if( $types  ===  false ){          $len  =  strlen ( $data );         if ( $len  %  2 ) {             return  0 ;         }else if ( strspn ( $data ,  '0123456789abcdefABCDEF' ) !=  $len ) {             return  0 ;         }         return  pack ( 'H*' ,  $data );     }else{         return  bin2hex ( $data );     } } echo  $t  =  hexXbin ( 'XN中国人(  ADdwere)zQ4MzUwOTcy==' , true ); echo  '<br />' ; echo  hexXbin ( $t );
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Beyond the Hype: Assessing PHP's Role TodayBeyond the Hype: Assessing PHP's Role TodayApr 12, 2025 am 12:17 AM

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

What are Weak References in PHP and when are they useful?What are Weak References in PHP and when are they useful?Apr 12, 2025 am 12:13 AM

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

Explain the __invoke magic method in PHP.Explain the __invoke magic method in PHP.Apr 12, 2025 am 12:07 AM

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

Explain Fibers in PHP 8.1 for concurrency.Explain Fibers in PHP 8.1 for concurrency.Apr 12, 2025 am 12:05 AM

Fibers was introduced in PHP8.1, improving concurrent processing capabilities. 1) Fibers is a lightweight concurrency model similar to coroutines. 2) They allow developers to manually control the execution flow of tasks and are suitable for handling I/O-intensive tasks. 3) Using Fibers can write more efficient and responsive code.

The PHP Community: Resources, Support, and DevelopmentThe PHP Community: Resources, Support, and DevelopmentApr 12, 2025 am 12:04 AM

The PHP community provides rich resources and support to help developers grow. 1) Resources include official documentation, tutorials, blogs and open source projects such as Laravel and Symfony. 2) Support can be obtained through StackOverflow, Reddit and Slack channels. 3) Development trends can be learned by following RFC. 4) Integration into the community can be achieved through active participation, contribution to code and learning sharing.

PHP vs. Python: Understanding the DifferencesPHP vs. Python: Understanding the DifferencesApr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP: Is It Dying or Simply Adapting?PHP: Is It Dying or Simply Adapting?Apr 11, 2025 am 12:13 AM

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

The Future of PHP: Adaptations and InnovationsThe Future of PHP: Adaptations and InnovationsApr 11, 2025 am 12:01 AM

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools