Home  >  Article  >  Backend Development  >  PHP website interface implements simple encryption method

PHP website interface implements simple encryption method

小云云
小云云Original
2018-03-03 16:05:214838browse

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

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!

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