How to do symmetric and asymmetric encryption in PHP?
In the field of network security, encryption technology is a very important technical means, which can encrypt and decrypt data to ensure data security. As a popular server-side programming language, PHP also provides support for symmetric and asymmetric encryption to meet the needs of different application scenarios.
- Symmetric encryption
Symmetric encryption refers to an encryption method that uses the same key for encryption and decryption. There are many symmetric encryption algorithms, such as DES, 3DES, AES, etc. In PHP, symmetric encryption can be implemented using the functions provided by the mcrypt extension library.
The sample code is as follows:
$key = '123456789'; // 密钥 $data = 'Hello World'; // 待加密字符串 $iv = mcrypt_create_iv(mcrypt_get_block_size(MCRYPT_DES, MCRYPT_MODE_CBC), MCRYPT_RAND); $cipher = mcrypt_encrypt(MCRYPT_DES, $key, $data, MCRYPT_MODE_CBC, $iv); echo base64_encode($cipher); // 输出加密后的字符串
In the above code, DES encryption is performed through the mcrypt_encrypt function, and the MCRYPT_MODE_CBC mode is used for filling. $key is the key for symmetric encryption, $data is the plaintext string to be encrypted, and $iv is a random initialization vector.
The decryption sample code is as follows:
$cipher = base64_decode('JnFXVC9e+rzR8oUgM67Q0w=='); // 加密后的字符串 $key = '123456789'; // 密钥 $iv = mcrypt_create_iv(mcrypt_get_block_size(MCRYPT_DES, MCRYPT_MODE_CBC), MCRYPT_RAND); $plain = mcrypt_decrypt(MCRYPT_DES, $key, $cipher, MCRYPT_MODE_CBC, $iv); echo $plain; // 输出解密后的字符串
- Asymmetric encryption
The asymmetric encryption algorithm requires a pair of keys for encryption and decryption, where the public key The key can be made public, but the private key must be kept secret. Commonly used asymmetric encryption algorithms include RSA, DSA, etc. In PHP, asymmetric encryption can be implemented using the functions provided by the openssl extension library.
The sample code is as follows:
$data = 'Hello World'; // 待加密字符串 $res = openssl_pkey_new(); // 生成密钥对 openssl_pkey_export($res, $privateKey); // 获取私钥 $publicKey = openssl_pkey_get_details($res)["key"]; // 获取公钥 openssl_public_encrypt($data, $cipher, $publicKey); // 加密数据 echo base64_encode($cipher); // 输出加密后的字符串
In the above code, first use the openssl_pkey_new function to generate a pair of public and private keys, and then use the openssl_public_encrypt function to encrypt the data. The $publicKey obtained at this time can be made public, but the $privateKey must be kept secret.
The decryption sample code is as follows:
$cipher = base64_decode('RvnOeNe+p8LtlpuUcq0wqFoX2yUaGXvY6FHlWpT0NQwzVQwVcDSnkw4C6YJMvnsMH4N5JDP18RI8x7CFqUCdJg=='); // 加密后的字符串 $privateKey = '-----BEGIN PRIVATE KEY----- ... -----END PRIVATE KEY-----'; // 私钥 openssl_private_decrypt($cipher, $plain, $privateKey); // 解密数据 echo $plain; // 输出解密后的字符串
In the above code, first use the openssl_pkey_export function to obtain the string form of the private key, and then use the openssl_private_decrypt function to decrypt the encrypted data and obtain the original plaintext .
Summary:
Through the above introduction, we learned that in PHP, you can use the mcrypt and openssl extension libraries to implement symmetric and asymmetric encryption. For different encryption requirements in application scenarios, we can flexibly choose to use different encryption algorithms and encryption methods. Of course, during the actual encryption process, we also need to pay attention to the protection and management of keys to ensure data security.
The above is the detailed content of How to do symmetric and asymmetric encryption in PHP?. For more information, please follow other related articles on the PHP Chinese website!

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

With the continuous development of network technology, Web applications are becoming more and more popular, and information security in Web applications is becoming increasingly important. In order to solve the problem of information security in Web applications, people have developed many encryption algorithms, the most famous of which are RSA, DES and other algorithms. However, since decryption of encryption algorithms requires a lot of calculations and time, which will bring a large system burden, a type of encryption algorithm that can quickly encrypt and decrypt in a short time has emerged, which is a high-speed encryption algorithm. This article will introduce high-level functions in PHP

IntroductionSymmetric encryption, also known as key encryption, is an encryption method in which the same key is used for encryption and decryption. This encryption method is fast and efficient and suitable for encrypting large amounts of data. The most commonly used symmetric encryption algorithm is Advanced Encryption Standard (AES). Java provides strong support for symmetric encryption, including classes in the javax.crypto package, such as SecretKey, Cipher, and KeyGenerator. Symmetric encryption in Java The JavaCipher class in the javax.crypto package provides cryptographic functions for encryption and decryption. It forms the core of the Java Cryptozoology Extensions (JCE) framework. In Java, the Cipher class provides symmetric encryption functions, and K

In the field of network security, encryption technology is a very important technical means that can encrypt and decrypt data to ensure data security. As a popular server-side programming language, PHP also provides support for symmetric and asymmetric encryption to meet the needs of different application scenarios. Symmetric encryption Symmetric encryption refers to an encryption method that uses the same key for encryption and decryption. There are many symmetric encryption algorithms, such as DES, 3DES, AES, etc. In PHP, this can be achieved using the functions provided by the mcrypt extension library

How to write RSA encryption algorithm using Python? Introduction: RSA is an asymmetric encryption algorithm that is widely used in the field of information security. In modern communications, the RSA encryption algorithm is commonly used to encrypt and decrypt sensitive data. This article will introduce how to use Python to write the RSA encryption algorithm and provide specific code examples. Install the Python library Before you start writing the RSA encryption algorithm, you need to install the Python encryption library. It can be installed using the following command: pipinstallrsa generate

PHP encryption algorithms include MD5 algorithm, SHA algorithm, AES algorithm, RSA algorithm, Base64 encoding, DES algorithm, RC4 algorithm, Blowfish algorithm, etc. Detailed introduction: 1. MD5 algorithm, used to convert data of any length into a fixed-length hash value. In PHP, you can use the md5() function to calculate the MD5 hash value of a string; 2. SHA algorithm, including SHA -1. SHA-256, SHA-512, etc. These algorithms have corresponding functions in PHP; 3. AES algorithm, etc.

With the vigorous development of Internet technology, network security has become one of the important factors in the development of global informatization today. With the continuous occurrence of cyber attacks and cyber crimes, protecting network security has become an inevitable choice for us. This article will focus on the development history of network security technology. 1. Cryptozoology Era (1960s-1980s) Network security technology in the cryptography era was mainly developed based on cryptographic ideas. During this period, the computer was just a huge machine, and the use of the Internet was not as widespread as it is now, so limited

How to use encryption algorithm to protect user data of PHP website? With the rapid development of the Internet, user data protection of websites has become more and more important. In PHP development, we can use encryption algorithms to protect the security of user data. This article will introduce some commonly used encryption algorithms and how to use them in PHP websites to encrypt user data. 1. Selection of encryption algorithms For PHP websites, we can choose the following commonly used encryption algorithms to protect the security of user data: 1. Symmetric encryption algorithm: This algorithm uses the same encryption algorithm.

With the development of the Internet, data security has become a serious issue that we must pay attention to in our daily work. Encryption becomes especially important when it comes to sensitive personal information or business data. In PHP development, some encryption algorithms are widely used. Let's take a look at the encryption algorithms commonly used in PHP. 1. Base64 encoding Base64 encoding is often used to transmit binary data in web pages or emails, because web pages or emails can only transmit string type data and cannot directly transmit binary data. Base64 is a solution
