MySQL encryption and decryption examples Data encryption and decryption are very important in the security field. For programmers, storing user passwords in ciphertext in the database is of great significance to intruders who steal user privacy. When building a table, pay attention to the type of field. As shown in the following figure: Insert encrypted data into the table The above insert statement has three fields, "Username", "Password" and "Encrypted Password". The AES_ENCRYPT() function requires a "key" to assist with encryption, and it is also required for decryption (remember this!). The following is a screenshot of the data in the table: The above insert statement has three fields, "Username", "Password" and "Encrypted Password". The AES_ENCRYPT() function requires a "key" to assist with encryption, and it is also required for decryption (remember this!). The following is a screenshot of the data in the table: Query encrypted data from the table The query above uses the AES_DECRYPT() function. Here are the results: In the above screenshot, we can see that the values of the "pasword" and "decryptedpassword" fields are the same, that is, you have decrypted the user password. Thank you for reading, I hope it can help you, thank you for your support of this site! You may also be interested in:
|
<<: Share 12 commonly used Loaders in Webpack (Summary)
>>: How to upload the jar package to nexus via the web page
Table of contents Question: 1. First attempt 2. R...
We are all familiar with the tr command, which ca...
1. Subquery MySQL 4.1 and above support subquerie...
Table of contents 2 solutions for file upload Bas...
Preface This article mainly introduces the releva...
1. First, use springboot to build a simple dubbo ...
The steps of docker packaging Python environment ...
It is very easy to delete data and tables in MySQ...
1: Download MySql Official website download addre...
Description and Introduction Docker inspect is a ...
Table of contents 1. Download 2. Installation 3. ...
This article records the installation and configu...
Data sorting asc, desc 1. Single field sorting or...
1. Install the built-in Linux subsystem of win10 ...