1 Star 0 Fork 2

arkizat/rsa-js-php

forked from john/rsa-js-php 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
云天河 提交于 2017-11-18 09:06 . Update index.html
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script src="./hlz_rsa.js"></script>
<script>
var public_key,
encrypt,
After_enode,
post_data='云天河';//post的某条数据
encrypt = new JSEncrypt();
After_enode = rsa_encode( post_data );//传入准备post的数据
document.write("加密前的数据:<input type='text' value=" + post_data+'><br><br>');
document.write('加密后的数据:<textarea rows="4" cols="50">' + After_enode + "</textarea><br><br>");
$.ajax({
url:'./rsa.php',
data:{"name":After_enode},
dataType:'html',
type:'post',
success:function(html){
$('body').append(html);
}
});
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/arkizat/rsa-js-php.git
[email protected]:arkizat/rsa-js-php.git
arkizat
rsa-js-php
rsa-js-php
master

搜索帮助