PHP application des for encryption and decryption

Source: Internet
Author: User
Tags chop
PHP uses DES for encryption and decryption

Des is a standard data encryption algorithm, the detailed introduction of this algorithm can refer to the wiki and Baidu Encyclopedia:

Wiki Encyclopedia Baidu Encyclopedia

PHP has an extension to support DES encryption algorithm, is: Extension=php_mcrypt.dll

Opening this extension in a configuration file is not yet available in the Windows environment

It is necessary to copy the Libmcrypt.dll under the PHP folder to the System32 directory of the system, which can be viewed by phpinfo mcrypt means that the module can be tested properly.

Here is an example of using DES encryption to decrypt PHP:


// $input-stuff to decrypt
$key-the secret key to use

function Do_mencrypt ( $input , $key )
{
$input = Str_replace ( "" N " , "" , $input );
$input = Str_replace ( "" T " , "" , $input );
$input = Str_replace ( "" R " , "" , $input );
$key = substr (MD5 ( $key ), 0, 24);
$TD = Mcrypt_module_open (' TripleDES ', ' ', ' ECB ', ');
$iv = Mcrypt_create_iv (Mcrypt_enc_get_iv_size ( $TD ), Mcrypt_rand);
Mcrypt_generic_init ( $TD , $key , $iv );
$encrypted _data = Mcrypt_generic ( $TD , $input );
Mcrypt_generic_deinit ( $TD );
Mcrypt_module_close ( $TD );
Return Trim (Chop (Base64_encode ( $encrypted _data )));
}

// $input -Stuff to decrypt
// $key -The secret key to use

function Do_mdecrypt ( $input , $key )
{
$input = Str_replace ( "" N " , "" , $input );
$input = Str_replace ( "" T " , "" , $input );
$input = Str_replace ( "" R " , "" , $input );
$input = Trim ( Chop ( Base64_decode ( $input )));
$TD = Mcrypt_module_open ( ' TripleDES ' , '' , ' ECB ' , '' );
$key = substr ( MD5 ( $key ) , 0 , - );
$iv = Mcrypt_create_iv (Mcrypt_enc_get_iv_size ( $TD ) , Mcrypt_rand);
Mcrypt_generic_init ( $TD , $key , $iv );
$decrypted _data = Mdecrypt_generic ( $TD , $input );
Mcrypt_generic_deinit ( $TD );
Mcrypt_module_close ( $TD );
return Trim ( Chop ( $decrypted _data ));

}


  • Related Article

    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.