


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
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
