Node.js 中的 crypto.publicDecrypt() 方法
node.jsjavascriptweb developmentfront end technology
crypto.publicDecrypt() 用于使用公钥解密缓冲区中的给定数据。此缓冲区使用相应的私钥(即 crypto.privateEncrypt() 方法)加密。
语法
crypto.publicDecrypt(key, buffer)
参数
上述参数描述如下 −
key – 它可以包含以下 5 种类型的数据 –对象、字符串、缓冲区或 KeyObject。
passphrase - 这是私钥的可选密码。
padding – 这是 crypto.constants 中定义的可选值。
encoding – 这是当缓冲区、密钥、oaepLabel 或密码值为字符串时需要使用的编码类型。
buffer – 此字段包含要加密的数据内容。可能的缓冲区类型为:string、TypedArray、Buffer、ArrayBuffer、DataView。
示例
创建一个名为 – publicDecrypt.js 的文件并复制以下代码片段。创建文件后,使用以下命令运行此代码,如下例所示 −
node publicDecrypt.js
publicDecrypt.js
// crypto.publicDecrypt 演示示例 // 导入 crypto、fs 和 path 模块 var crypto = require('crypto'); var fs = require('fs'); const path = require('path'); // 创建以下函数用于生成密钥 function generateKeyFiles() { const keyPair = crypto.generateKeyPairSync('rsa', { modulusLength: 520, publicKeyEncoding: { type: 'spki', format: 'pem' }, privateKeyEncoding: { type: 'pkcs8', format: 'pem', cipher: 'aes-256-cbc', passphrase: '' } }); // 创建具有以下名称的公钥文件 fs.writeFileSync("public_key", keyPair.publicKey); fs.writeFileSync("private_key", keyPair.privateKey); } // 调用生成密钥方法 generateKeyFiles(); // 读取私钥和公钥 var private = fs.readFileSync('private_key'); var public = fs.readFileSync('public_key'); // 定义原始数据 var data = 'Welcome to TutorialsPoint'; console.log("Original Data is: "+data); // 使用私钥加密数据 encrypted = crypto.privateEncrypt(private, Buffer.from(data, 'utf8')).toString('base64'); // 使用公钥解密数据 originalData = crypto.publicDecrypt(public, Buffer.from(encrypted, 'base64')); console.log(); // 打印加密消息 console.log("Encrypted with private key: " + crypto); console.log(); // 打印解密消息 console.log("Decrypted with public key: " + originalData.toString());
输出
C:\home
ode>> node publicDecrypt.js Original Data is: Welcome to TutorialsPoint Encrypted with private key: EFBihrKebXb0gfCF7nTnw82yXpToH5eVBpLc8O5QL/ZgfZ/qJT5I/BejSMwV4NFCp+AIKnz2lrjmFh IhnpZWbF4= Decrypted with public key: Welcome to TutorialsPoint
示例
我们再看一个例子。
// crypto.publicDecrypt 演示示例 // 导入 crypto 和 fs 模块 var crypto = require('crypto'); var fs = require('fs'); // 创建以下函数用于生成密钥 function generateKeyFiles() { const keyPair = crypto.generateKeyPairSync('rsa', { modulusLength: 520, publicKeyEncoding: { type: 'spki', format: 'pem' }, privateKeyEncoding: { type: 'pkcs8', format: 'pem', cipher: 'aes-256-cbc', passphrase: '' } }); // 使用以下名称创建公钥文件 fs.writeFileSync("public_key", keyPair.publicKey); fs.writeFileSync("private_key", keyPair.privateKey); } // 调用生成密钥方法 generateKeyFiles(); // 读取私钥 privateKey = fs.readFileSync('private_key').toString(); var buffer = Buffer.from('Welcome to TutorialsPoint', 'utf8'); console.log("加密前的数据缓冲区") console.log(buffer); // 加密缓冲区文本 encrypted = crypto.privateEncrypt(privateKey, buffer); // 打印加密后的数据 console.log("加密后的数据:"); console.log(encrypted); // 读取公钥 publicKey = fs.readFileSync('public_key').toString(); // 使用公钥解密加密文本 decryptedData = crypto.publicDecrypt(publicKey, crypto); // 打印原始内容 console.log("Data after decryption: "); console.log(decryptedData);
输出
C:\home
ode>> node publicDecrypt.js Data buffer before encryption <Buffer 57 65 6c 63 6f 6d 65 20 74 6f 20 54 75 74 6f 72 69 61 6c 73 50 6f 69 6e 74> Data after encryption: <Buffer a6 9d e3 86 9f 3f 4b b9 3f f7 a6 9c 7c 16 0f 04 b9 c4 16 0b 08 f1 06 39 de 32 75 7c 26 88 fa 49 bd 31 6b 4b 4d 02 e6 87 56 ee 9c 95 53 10 8f 28 49 f5 ... > Data after decryption: <Buffer 57 65 6c 63 6f 6d 65 20 74 6f 20 54 75 74 6f 72 69 61 6c 73 50 6f 69 6e 74>