PHP website interface implements simple encryption method

小云云
Release: 2023-03-20 18:08:01
Original
4802 people have browsed it

This article mainly shares with you how to implement simple encryption through the PHP website interface. I hope it can help you.

// md5加密数据 添加sign
function md5Encryption($post_data)
{
	$post_data['time_stamp'] = time();
	ksort($post_data);
	$post_data['sign'] = md5( implode('#', $post_data) . '58coin' );
	//print_r($post_data);
	return $post_data;
}	

// 验证 md5加密数据sign
function checkMd5Encryption($post_data)
{
	// 验证有效期【60秒】
	if( ($post_data['time_stamp']+60) < time() ):
		echo json_encode([&#39;code&#39;=>400,'msg'=>'overtime!', 'data'=>'']);
		die;
	endif;
	// 验证签名
	$sign = $post_data['sign'];
	unset($post_data['sign']);
	ksort($post_data);
	if($sign != md5( implode('#', $post_data) . '58coin' ) ):
		echo json_encode(['code'=>400,'msg'=>'sign error!', 'data'=>'']);
		die;
	endif;
}
Copy after login

Related recommendations:

Detailed explanation of php encryption and decryption

##Summary of PHP’s method of encrypting source code

Issues related to APP interface encryption

The above is the detailed content of PHP website interface implements simple encryption method. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!