OpenPGP.JS:解密消息时出错

时间:2017-04-21 12:56:28

标签: javascript node.js encryption openpgp.js

我尝试使用OpenPGP.JS解密消息。 我总是得到这个错误:

Unhandled promise rejection (rejection id: 1): Error: Error decrypting   
message: No symmetrically encrypted session key packet found.

这是我的代码:

var openpgp = require('openpgp'); 
openpgp.initWorker({ path:'../node_modules/openpgp/dist/openpgp.worker.js' }) 
var passphrase = 'Our secret approach'; //what the privKey is encrypted with

const fs = require('fs'); 
var data = fs.readFileSync('./order-file.txt', 'utf8');
var pubkey = fs.readFileSync('./public.key', 'utf8');
var privkey = fs.readFileSync('./privat.key', 'utf8');

var privKeyObj = openpgp.key.readArmored(privkey).keys[0];

options = {
        message: openpgp.message.readArmored(data),     // parse armored message
        publicKeys: openpgp.key.readArmored(pubkey),    // for verification (optional)
        privateKeys: openpgp.key.readArmored(privkey).keys[0].decrypt(passphrase),
        password : passphrase
    };

openpgp.decrypt(options).then(function(plaintext) {

    console.dir(plaintext);
    return plaintext.data; // 'Hello, World!'
});

我想知道我做错了。 也许有人有个主意。 亲切的问候

马库斯

1 个答案:

答案 0 :(得分:0)

开发消息:"停止在解密选项对象中传递密码。这适用于使用密码加密的消息(对称密钥加密),而不是您正在使用的公钥加密。因为您提供密码,所以它认为它使用的是前一种模式。"