首页 > 编程 > JavaScript > 正文

security.js实现的RSA加密功能示例

2019-11-19 13:42:32
字体:
来源:转载
供稿:网友

本文实例讲述了security.js实现的RSA加密功能。分享给大家供大家参考,具体如下:

在项目中遇到要对用户输入的密码进行RSA加密的需求,总结一下实现过程:

<html><head><meta charset="utf-8" /><title>www.VeVB.COm JS rsa加密</title></head><body>  <div>   <input type="text" id="pwd" placeholder="请输入密码"/><br />   <input type="text" id="key1" placeholder="请输入modulus参数"/><br />   <input type="text" id="key2" placeholder="请输入exponent参数"/>   <button id="btn">加密</button><br />   <input type="text" id="pwd1" placeholder="加密后"/>  </div> <script type="text/javascript" src="../RSA加密/security.js"> //引入security.js文件 </script> <script>  var btn = document.getElementById('btn');  btn.onclick = function(){   var pwd = document.getElementById('pwd').value;   var modulus = document.getElementById('key1').value;   var exponent = document.getElementById('key2').value;   //加密   var key = RSAUtils.getKeyPair(exponent, "", modulus);   var apwd = RSAUtils.encryptedString(key, pwd);   //加密后的密码;   document.getElementById('pwd1').value = apwd;  } </script></body></html>

这里的exponent参数和modulus参数讲道理是要从后台获取的,这里写做输入框获取是作测试用。

security.js点击此处本站下载

PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:

在线RSA加密/解密工具:
http://tools.VeVB.COm/password/rsa_encode

文字在线加密解密工具(包含AES、DES、RC4等):
http://tools.VeVB.COm/password/txt_encode

在线编码转换工具(utf-8/utf-32/Punycode/Base64):
http://tools.VeVB.COm/transcoding/decode_encode_tool

BASE64编码解码工具:
http://tools.VeVB.COm/transcoding/base64

在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
http://tools.VeVB.COm/password/hash_md5_sha

在线sha1/sha224/sha256/sha384/sha512加密工具:
http://tools.VeVB.COm/password/sha_encode

更多关于JavaScript相关内容可查看本站专题:《JavaScript加密解密技巧汇总》、《JavaScript查找算法技巧总结》、《JavaScript错误与调试技巧总结》、《JavaScript数据结构与算法技巧总结》、《JavaScript遍历算法与技巧总结》及《JavaScript数学运算用法总结

希望本文所述对大家JavaScript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表