Node.js 中的 RSA 加密、解密、签名与验证详解
const NodeRSA = require('node-rsa');
const crypto = require('crypto');
// 生成密钥对
const key = new NodeRSA({b: 2048});
const publicKey = key.exportKey('pkcs8-public');
const privateKey = key.exportKey('pkcs8-private');
// 加密
const dataToEncrypt = 'Hello, World!';
const encryptedData = NodeRSA(publicKey).encrypt(dataToEncrypt, 'base64');
// 解密
const decryptedData = NodeRSA(privateKey).decrypt(encryptedData, 'utf8');
// 签名
const signKey = new NodeRSA(privateKey);
const dataToSign = 'Some data to sign';
const signature = signKey.sign(dataToSign, 'base64', 'buffer');
// 验证签名
const verifyKey = new NodeRSA(publicKey);
verifyKey.importKey(privateKey, 'pkcs8-private'); // 需要导入私钥来验证
const isVerified = verifyKey.verify(dataToSign, signature, 'base64', 'buffer');
// 输出结果
console.log('Encrypted Data:', encryptedData);
console.log('Decrypted Data:', decryptedData);
console.log('Signature:', signature.toString('base64'));
console.log('Signature Verified:', isVerified);
这段代码展示了如何在Node.js环境中使用node-rsa
库进行RSA加密、解密、签名和验证。首先,我们生成了一个2048位的密钥对,然后使用公钥进行数据加密,私钥进行数据解密。接着,我们用私钥对数据进行签名,并用公钥验证签名的正确性。这个过程是安全通信和数据完整性的重要组成部分。
评论已关闭