node-rsa 生成私钥/公钥 加密/解密 签名/验证
Madman 数据分析师

前言

简单介绍使用node-rsa模块生成/导出秘钥,加密/解密,签名/验证

具体方法见API

首先导入模块

1
npm install node-rsa

生成,导入导出秘钥

1
2
3
4
5
var key = new NodeRSA({b: 512});//生成512位秘钥
var pubkey = key.exportKey('pkcs8-public');//导出公钥
var prikey = key.exportKey('pkcs8-private');//导出私钥
var pubKey = new NodeRSA(pubKey,'pkcs8-public');//导入公钥
var priKey = new NodeRSA(priKey,'pkcs8-private');//导入私钥

加密解密

公钥加密(返回密文):

1
2
pubKey = new NodeRSA(publicKey,'pkcs8-public');
var encrypted = pubKey.encrypt(buffer, 'base64');

私钥解密(返回明文):

1
2
priKey = new NodeRSA(privateKey,'pkcs8-private');
var decrypted = priKey.decrypt(buffer, 'utf8');

签名验证

私钥签名(返回签名):

1
2
priKey = new NodeRSA(privateKey,'pkcs8-private');
var signature = priKey.sign(buffer);

公钥验证(返回true或false):

1
2
pubKey = new NodeRSA(publicKey,'pkcs8-public');
var flag = pubKey.verify(buffer, signature);
  • 本文标题:node-rsa 生成私钥/公钥 加密/解密 签名/验证
  • 本文作者:Madman
  • 创建时间:2020-01-15 11:16:47
  • 本文链接:https://www.patpat.site/开发/服务端/node-rsa-生成私钥-公钥-加密-解密-签名-验证.html
  • 版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
 评论