Fix decrypting newly generated key object when using the Worker

This commit is contained in:
Daniel Huigens 2019-09-11 17:48:54 +02:00
parent a731a607ce
commit 18474bdfb6
2 changed files with 13 additions and 0 deletions

View File

@ -415,6 +415,9 @@ SecretKey.prototype.postCloneTypeFix = function() {
if (this.keyid) {
this.keyid = type_keyid.fromClone(this.keyid);
}
if (this.s2k) {
this.s2k = type_s2k.fromClone(this.s2k);
}
};
export default SecretKey;

View File

@ -2210,6 +2210,16 @@ describe('Key', function() {
describe('V4', versionSpecificTests);
tryTests('V4 - With Worker', versionSpecificTests, {
if: typeof window !== 'undefined' && window.Worker,
before: async function() {
await openpgp.initWorker({ path: '../dist/openpgp.worker.js' });
},
after: function() {
openpgp.destroyWorker();
}
});
let v5_keysVal;
let aead_protectVal;
tryTests('V5', versionSpecificTests, {