真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

NodeJS加密解密及node-rsa加密解密用法詳解

要用nodejs開發(fā)接口,實現(xiàn)遠程調用,如果裸奔太危險了,就在網上找了一下nodejs的加密,感覺node-rsa挺不錯的,下面來總結一下簡單的rsa加密解密用法

創(chuàng)新互聯(lián)公司公司2013年成立,是專業(yè)互聯(lián)網技術服務公司,擁有項目成都網站建設、網站制作網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元長安做網站,已為上家服務,為長安各地企業(yè)和個人服務,聯(lián)系電話:028-86922220

初始化環(huán)境

新建一個文件夾 node-rsa-demo , 終端進入,運行下面命令初始化

cd node-rsa-demo
npm init # 一路回車即可
npm install --save node-rsa

生成公鑰私鑰

在 node-rsa-demo 下新建一個文件 index.js 寫上如下代碼

var NodeRSA = require('node-rsa')
var fs = require('fs')
function generator() {
 var key = new NodeRSA({ b: 512 })
 key.setOptions({ encryptionScheme: 'pkcs1' })
 var privatePem = key.exportKey('pkcs1-private-pem')
 var publicPem = key.exportKey('pkcs1-public-pem')
 fs.writeFile('./pem/public.pem', publicPem, (err) => {
 if (err) throw err
 console.log('公鑰已保存!')
 })
 fs.writeFile('./pem/private.pem', privatePem, (err) => {
 if (err) throw err
 console.log('私鑰已保存!')
 })
}
generator();

先在 node-rsa-demo 文件夾下新建一個文件夾 pem 用來存放密鑰的,然后執(zhí)行 node index.js ,會發(fā)現(xiàn)在 pem 文件夾下生成了兩個文件

  • private.pem
  • public.pem

加密

加密 hello world 這個字符串

function encrypt() {
 fs.readFile('./pem/private.pem', function (err, data) {
 var key = new NodeRSA(data);
 let cipherText = key.encryptPrivate('hello world', 'base64');
 console.log(cipherText);
 });
}
//generator();
encrypt();

然后執(zhí)行 node index.js 終端里會輸出一串類似

fH1aVCUceJYVvt1tZ7WYc1Dh6dVCd952GY5CX283V/wK2229FLgT9WfRNAPMjbTtwL9ghVeYD4Lsi6yM1t4OqA== 的base64字符串,這就是用私鑰加密后的密文了

解密

把上一步加密獲得的密文復制粘貼到下面要解密的方法內

function decrypt() {
 fs.readFile('./pem/public.pem', function (err, data) {
 var key = new NodeRSA(data);
 let rawText = key.decryptPublic('fH1aVCUceJYVvt1tZ7WYc1Dh6dVCd952GY5CX283V/wK2229FLgT9WfRNAPMjbTtwL9ghVeYD4Lsi6yM1t4OqA==', 'utf8');
 console.log(rawText);
 });
}
//generator();
//encrypt();
decrypt();

執(zhí)行 node index.js 會發(fā)現(xiàn)又拿到 hello world

參考

https://github.com/rzcoder/node-rsa

PS:下面通過一段代碼看下nodejs加密解密

nodejs是通集成在內核中的crypto模塊來完成加密解密。

常用加密解密模塊化代碼:

/**
 * Created by linli on 2015/8/25.
 */
var crypto = require('crypto');

//加密
exports.cipher = function(algorithm, key, buf) {
 var encrypted = "";
 var cip = crypto.createCipher(algorithm, key);
 encrypted += cip.update(buf, 'binary', 'hex');
 encrypted += cip.final('hex');
 return encrypted
};

//解密
exports.decipher = function(algorithm, key, encrypted) {
 var decrypted = "";
 var decipher = crypto.createDecipher(algorithm, key);
 decrypted += decipher.update(encrypted, 'hex', 'binary');
 decrypted += decipher.final('binary');
 return decrypted
};

此處,只針對可逆加密。

總結

以上所述是小編給大家介紹的NodeJS加密解密及node-rsa加密解密用法詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網站的支持!


本文標題:NodeJS加密解密及node-rsa加密解密用法詳解
網頁地址:http://weahome.cn/article/jocede.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部