Detailed explanation of the steps to implement one-way hash encryption in PHP

php中世界最好的语言
Release: 2023-03-26 13:06:02
Original
1578 people have browsed it

This time I will bring you a detailed explanation of the steps to implement one-way hash encryption in PHP. What are the precautions for PHP to implement one-way hash encryption. The following is a practical case, let's take a look.

1. Encrypt files

<?php
//sha1_en.php
header("content-type:text/html;charset=utf-8");
$str = "我是张三,能给我个人数据吗";
$salt="123456";//我是唯一不变的salt
$sha1=sha1($str.$salt);//或者$sha1=md5($str.$salt);
echo $str;
echo "<br/>";
echo $sha1;
echo "<br/>";
echo "http://localhost//sha1_de.php?str=$str&sha1=$sha1";
?>
Copy after login

2. Decrypt files

<?php
//sha1_de.php
header("content-type:text/html;charset=utf-8");
$str=$_GET["str"];
$sha1=$_GET["sha1"];
$salt="123456";//我是唯一不变的salt
$verify=sha1($str.$salt);//或者$verify=md5($str.$salt);
echo $verify;
if($verify==$sha1){
  echo "你是张三,给你信息";
}else{
  echo "你是假冒伪劣产品";
  echo "你的ip".$_SERVER[&#39;REMOTE_ADDR&#39;]."已经被记录了";
}
?>
Copy after login

I believe you have mastered the method after reading the case in this article , for more exciting content, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps to install the php-mongodb extension using the PECL method

php can install the openssl extension without compiling it Detailed explanation of steps

The above is the detailed content of Detailed explanation of the steps to implement one-way hash encryption in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template