首页 > 代码库 > RSA密钥对加密流程
RSA密钥对加密流程
1.前端提交form之前call后台,要求获得publicKey的相关参数。
2.后台生成密钥对,把privateKey存在session, 把publicKey的modulus和exponent返回前台。
3.前台用publicKey对password加密,大致流程:
var rsaKey = new RSAKey();
rsaKey.setPublic( h64tohex(data.modulus), b64tohex(data.exponent) );
var enPassword = hex2b64( rsaKey.encrypt($password.val()) );
把form提交到后台
4.后台使用privateKey对密码进行解密:
String password = RSAUtils.decrypt(privateKey, enPassword);
5.将解密后的password进行加密,存入数据库或者和数据库中的数据进行比对:
DigestUtils.md5Hex(password);
2.后台生成密钥对,把privateKey存在session, 把publicKey的modulus和exponent返回前台。
3.前台用publicKey对password加密,大致流程:
var rsaKey = new RSAKey();
rsaKey.setPublic( h64tohex(data.modulus), b64tohex(data.exponent) );
var enPassword = hex2b64( rsaKey.encrypt($password.val()) );
把form提交到后台
4.后台使用privateKey对密码进行解密:
String password = RSAUtils.decrypt(privateKey, enPassword);
5.将解密后的password进行加密,存入数据库或者和数据库中的数据进行比对:
DigestUtils.md5Hex(password);
RSA密钥对加密流程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。