search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Table of Contents
Encryption and decryption method implemented by PHP combined with md5, PHP combined with md5 encryption and decryption
Articles you may be interested in:
Home Backend Development PHP Tutorial Encryption and decryption method implemented by php combined with md5, php combined with md5 encryption and decryption_PHP tutorial

Encryption and decryption method implemented by php combined with md5, php combined with md5 encryption and decryption_PHP tutorial

Jul 12, 2016 am 08:59 AM
php encryption Decrypt

Encryption and decryption method implemented by PHP combined with md5, PHP combined with md5 encryption and decryption

This article describes the encryption and decryption method implemented by PHP combined with md5. Share it with everyone for your reference, the details are as follows:

I recently found a good thing when sorting out the code, which is combined with the md5 encryption and decryption algorithm. There are relatively few online information about the encryption and decryption algorithms of PHP combined with MD5. In fact, it is in the PHP manual. Just change it. Post it here. To use this algorithm, you need to load a php module mcrypt, otherwise it will not be used.

//加密
function string2secret($str)
{
 $key = "123";
 $td = mcrypt_module_open(MCRYPT_DES,'','ecb','');
 $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
 $ks = mcrypt_enc_get_key_size($td);
 $key = substr(md5($key), 0, $ks);
 mcrypt_generic_init($td, $key, $iv);
 $secret = mcrypt_generic($td, $str);
 mcrypt_generic_deinit($td);
 mcrypt_module_close($td);
 return $secret;
}
//解密
function secret2string($sec)
{
 $key = "123";
 $td = mcrypt_module_open(MCRYPT_DES,'','ecb','');
 $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
 $ks = mcrypt_enc_get_key_size($td);
 $key = substr(md5($key), 0, $ks);
 mcrypt_generic_init($td, $key, $iv);
 $string = mdecrypt_generic($td, $sec);
 mcrypt_generic_deinit($td);
 mcrypt_module_close($td);
 return trim($string);
}
echo secret2string(string2secret("11111111111111111")); //显示结果是11111111111111111
echo string2secret("11111111111111111"); //显示乱码

PHP’s commonly used encryption and decryption functions are base64_encode and base64_decode.

Readers who are interested in more content related to PHP encryption and decryption can check out the special topic of this site: "Summary of PHP Encryption Methods"

I hope this article will be helpful to everyone in PHP programming.

Articles you may be interested in:

  • PHP encryption and decryption example analysis
  • SSL encryption and decryption, verification, and signature methods under PHP (very simple)
  • Detailed explanation of PHP encryption and decryption string functions with source code download
  • PHP encapsulated string encryption and decryption function
  • thinkphp WeChat development (message encryption and decryption)
  • Detailed explanation of PHP encryption and decryption functions
  • PHP implementation of enhanced encryption and decryption class example
  • php source code analysis of DZX1.5 encryption and decryption function authcode usage
  • PHP decrypts Unicode and Escape encrypted strings
  • How to use PHP rsa encryption and decryption
  • Summary of PHP encryption and decryption strings
  • Analysis of PHP encryption and decryption class examples
  • Detailed explanation of how to use PHP rsa encryption and decryption

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1095688.htmlTechArticleEncryption and decryption method implemented by php combined with md5, php combined with md5 encryption and decryption This article describes the encryption implemented by php combined with md5 Decryption method. Share it with everyone for your reference, the details are as follows: Most...
Statement of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Popular tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to install Redis cluster on Linux_Linux distributed cache deployment solution [Advanced] How to install Redis cluster on Linux_Linux distributed cache deployment solution [Advanced] Feb 08, 2026 pm 07:39 PM

The Redis6 cluster must be created with redis-cli--cluster. It requires a minimum of 3 masters and 3 slaves, a total of 6 nodes. The client port and the corresponding cluster bus port (10000) must be opened. Correct configuration but blocked ports is a common cause of failure.

How to dynamically set arbitrary depth value of nested array in PHP How to dynamically set arbitrary depth value of nested array in PHP Mar 04, 2026 am 11:15 AM

This article introduces a safe and efficient method to use key path arrays (such as ['key1', 'key2', 'key3']) to assign values ​​to the last nodes of multi-dimensional associative arrays, solve the problem of reference failure caused by value transfer, and take into account key existence verification.

How to import SQL files in mysql_mysql SQL file import method How to import SQL files in mysql_mysql SQL file import method Feb 09, 2026 pm 05:24 PM

The most common and reliable way to import SQL files into MySQL is the command line tool mysql, which supports cross-platform, high efficiency and stability, and is suitable for files of all sizes. It can also be executed in the client through the source command, or using graphical tools such as phpMyAdmin and MySQL Workbench.

Where can I see the PHP operator priority table_php official operator priority [Reference] Where can I see the PHP operator priority table_php official operator priority [Reference] Mar 02, 2026 am 11:45 AM

The official description of PHP operator precedence is located at https://www.php.net/manual/en/language.operators.precedence.php. You need to directly search for "operatorprecedence" or manually enter the URL to access; == and === have the same priority and belong to the same level; error-prone combinations include &&/|| and and/or, ?: and ??, new and []; complex expressions must be bracketed.

Number statistics in pyramid loop in PHP: correct counting method of total, odd and even numbers Number statistics in pyramid loop in PHP: correct counting method of total, odd and even numbers Mar 04, 2026 pm 01:30 PM

This article explains in detail how to accurately count the total number, odd number and even number of all generated numbers in the PHP pyramid printing loop, correct common logic errors (such as misuse of variables, confusion of counting objects), and provide runnable examples and key precautions.

PHP batch processing of color mode and resolution of pictures in PPT PHP batch processing of color mode and resolution of pictures in PPT Mar 02, 2026 am 10:18 AM

To read PPTX images with PHP, you need to decompress the ZIP package first, because the images are stored in the ppt/media/ directory; directly calling the image function will report an error; you must use ZipArchive to decompress, Imagick to process CMYK to RGB conversion and scaling, and update the rels and [Content_Types].xml files simultaneously.

How to deal with character sets after mysql upgrade_mysql encoding migration instructions How to deal with character sets after mysql upgrade_mysql encoding migration instructions Feb 09, 2026 pm 07:17 PM

After the MySQL 8.0 upgrade, the default character set becomes utf8mb4, but the old table character set remains unchanged; latin1/utf8 tables need to be manually migrated, and the source character set must be specified when exporting. ALTERTABLECONVERT will re-encode the data, and the connection layer must explicitly declare utf8mb4.

How to install ThinkPHP with composer_Steps to deploy TP framework using composer How to install ThinkPHP with composer_Steps to deploy TP framework using composer Feb 12, 2026 am 06:27 AM

The ThinkPHP stable version should be clearly specified, such as using composercreate-projecttopthink/thinktp6^6.3 to install the TP6.3LTS version to avoid pulling non-production-ready beta versions because dev-master has switched to the TP8 preview version.

Related articles