3 Star 11 Fork 4

Aris/以RSA加密传输密钥(JS-PHP)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
json_test.php 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
Aris 提交于 2018-11-25 18:33 . PHP后端
<?php
/**
* Created by PhpStorm.
* User: aris
* Date: 2018/11/25
* Time: 下午4:45
*/
/**
* RSA私钥解密,需在php.ini开启php_openssl.dll扩展
* @param String : after_encode_data 前端传来,经 RSA 加密后的数据
* @return 返回解密后的数据
*/
function rsa_decode($after_encode_data)
{
// 读取私钥文件
$private_key = file_get_contents('rsa_private_key.pem');
openssl_private_decrypt(
base64_decode($after_encode_data),
$decode_result,
$private_key
);
return $decode_result;
}
$username_default = $_POST['username'];
$pswd_default = $_POST['pswd'];
$username_decode = rsa_decode($username_default);
$pswd_decode = rsa_decode($pswd_default);
$arr = array( 'username_decode'=>$username_decode, 'pswd_decode'=>$pswd_decode, 'username_default'=>$username_default, 'pswd_default'=>$pswd_default);
echo json_encode($arr,JSON_UNESCAPED_UNICODE);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/ariser/RSA.git
git@gitee.com:ariser/RSA.git
ariser
RSA
以RSA加密传输密钥(JS-PHP)
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385