Release new version

This commit is contained in:
Daniel Huigens 2020-01-24 20:05:16 +01:00
parent 786d909f79
commit 09e818763e
15 changed files with 2091 additions and 876 deletions

View File

@ -1,6 +1,6 @@
{
"name": "openpgp",
"version": "4.8.0",
"version": "4.8.1",
"license": "LGPL-3.0+",
"homepage": "https://openpgpjs.org/",
"authors": [

1196
dist/compat/openpgp.js vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,5 @@
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
(function (global){
// GPG4Browsers - An OpenPGP implementation in javascript
// Copyright (C) 2011 Recurity Labs GmbH
//
@ -29,10 +30,8 @@
* @module worker/worker
*/
self.window = self; // to make UMD bundles work
importScripts('openpgp.js');
var openpgp = window.openpgp;
var openpgp = global.openpgp;
var randomQueue = [];
var MAX_SIZE_RANDOM_BUFFER = 60000;
@ -93,7 +92,7 @@ function configure(config) {
}
/**
* Seed the library with entropy gathered window.crypto.getRandomValues
* Seed the library with entropy gathered global.crypto.getRandomValues
* as this api is only avalible in the main window.
* @param {ArrayBuffer} buffer Some random bytes
*/
@ -120,6 +119,16 @@ function getCachedKey(key) {
* @param {Object} options The api function's options
*/
function delegate(id, method, options) {
if (method === 'clear-key-cache') {
Array.from(keyCache.values()).forEach(key => {
if (key.isPrivate()) {
key.clearPrivateParams();
}
});
keyCache.clear();
response({ id, event: 'method-return' });
return;
}
if (typeof openpgp[method] !== 'function') {
response({ id:id, event:'method-return', err:'Unknown Worker Event' });
return;
@ -159,4 +168,5 @@ function response(event) {
*/
postMessage({ event: 'loaded' });
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{}]},{},[1]);

View File

@ -1,2 +1,2 @@
/*! OpenPGP.js v4.8.0 - 2020-01-14 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(a,s){if(!t[a]){if(!n[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(i)return i(a,!0);var c=new Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[a]={exports:{}};n[a][0].call(f.exports,function(e){return o(n[a][1][e]||e)},f,f.exports,e,n,t,r)}return t[a].exports}for(var i="function"==typeof require&&require,a=0;a<r.length;a++)o(r[a]);return o}}()({1:[function(e,n,t){self.window=self,importScripts("openpgp.min.js");var r=window.openpgp,o=[],i=6e4;r.crypto.random.randomBuffer.init(i,function(){return o.length||self.postMessage({event:"request-seed",amount:i}),new Promise(function(e){o.push(e)})}),self.onmessage=function(e){var n,t=e.data||{};switch(t.event){case"configure":n=t.config,Object.keys(n).forEach(function(e){r.config[e]=n[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));r.crypto.random.randomBuffer.set(e)}(t.buf);var i=o;o=[];for(var a=0;a<i.length;a++)i[a]();break;default:!function(e,n,t){if("function"!=typeof r[n])return void u({id:e,event:"method-return",err:"Unknown Worker Event"});r.util.restoreStreams(t),(t=r.packet.clone.parseClonedPackets(t,n)).publicKeys&&(t.publicKeys=t.publicKeys.map(s));t.privateKeys&&(t.privateKeys=t.privateKeys.map(s));r[n](t).then(function(n){u({id:e,event:"method-return",data:r.packet.clone.clonePackets(n)})}).catch(function(n){r.util.print_debug_error(n),u({id:e,event:"method-return",err:n.message,stack:n.stack})})}(t.id,t.event,t.options||{})}};const a=new Map;function s(e){const n=e.armor();return a.has(n)?a.get(n):(a.set(n,e),e)}function u(e){self.postMessage(e,r.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})},{}]},{},[1]);
/*! OpenPGP.js v4.8.1 - 2020-01-24 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(i,s){if(!t[i]){if(!n[i]){var u="function"==typeof require&&require;if(!s&&u)return u(i,!0);if(a)return a(i,!0);var c=new Error("Cannot find module '"+i+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[i]={exports:{}};n[i][0].call(f.exports,function(e){return o(n[i][1][e]||e)},f,f.exports,e,n,t,r)}return t[i].exports}for(var a="function"==typeof require&&require,i=0;i<r.length;i++)o(r[i]);return o}}()({1:[function(e,n,t){(function(e){importScripts("openpgp.min.js");var n=e.openpgp,t=[],r=6e4;n.crypto.random.randomBuffer.init(r,function(){return t.length||self.postMessage({event:"request-seed",amount:r}),new Promise(function(e){t.push(e)})}),self.onmessage=function(e){var r,s=e.data||{};switch(s.event){case"configure":r=s.config,Object.keys(r).forEach(function(e){n.config[e]=r[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));n.crypto.random.randomBuffer.set(e)}(s.buf);var u=t;t=[];for(var c=0;c<u.length;c++)u[c]();break;default:!function(e,t,r){if("clear-key-cache"===t)return Array.from(o.values()).forEach(e=>{e.isPrivate()&&e.clearPrivateParams()}),o.clear(),void i({id:e,event:"method-return"});if("function"!=typeof n[t])return void i({id:e,event:"method-return",err:"Unknown Worker Event"});n.util.restoreStreams(r),(r=n.packet.clone.parseClonedPackets(r,t)).publicKeys&&(r.publicKeys=r.publicKeys.map(a));r.privateKeys&&(r.privateKeys=r.privateKeys.map(a));n[t](r).then(function(t){i({id:e,event:"method-return",data:n.packet.clone.clonePackets(t)})}).catch(function(t){n.util.print_debug_error(t),i({id:e,event:"method-return",err:t.message,stack:t.stack})})}(s.id,s.event,s.options||{})}};const o=new Map;function a(e){const n=e.armor();return o.has(n)?o.get(n):(o.set(n,e),e)}function i(e){self.postMessage(e,n.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[1]);

View File

@ -20663,7 +20663,7 @@ exports.default = {
* @memberof module:config
* @property {String} versionstring A version string to be included in armored messages
*/
versionstring: "OpenPGP.js v4.8.0",
versionstring: "OpenPGP.js v4.8.1",
/**
* @memberof module:config
* @property {String} commentstring A comment string to be included in armored messages
@ -25765,6 +25765,7 @@ exports.default = {
};
},{"./curves":78,"./ecdh":79,"./ecdsa":80,"./eddsa":81}],83:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -25822,7 +25823,7 @@ function keyFromPublic(indutnyCurve, pub) {
}
/**
* Load elliptic on demand to the window.openpgp.elliptic
* Load elliptic on demand to global.openpgp.elliptic
* @returns {Promise<elliptic>}
*/
async function loadEllipticPromise() {
@ -25833,10 +25834,10 @@ async function loadEllipticPromise() {
const mainUrl = URL.createObjectURL(new Blob([ellipticContents], { type: 'text/javascript' }));
await (0, _lightweight_helper.loadScript)(mainUrl);
URL.revokeObjectURL(mainUrl);
if (!window.openpgp.elliptic) {
if (!global.openpgp.elliptic) {
throw new Error('Elliptic library failed to load correctly');
}
return window.openpgp.elliptic;
return global.openpgp.elliptic;
}
let ellipticPromise;
@ -25866,6 +25867,7 @@ async function getIndutnyCurve(name) {
return new elliptic.ec(name);
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../../../config":57,"../../../lightweight_helper":103,"../../../util":136,"elliptic":"elliptic"}],84:[function(require,module,exports){
'use strict';
@ -26129,6 +26131,7 @@ async function millerRabin(n, k, rand) {
}
},{"../random":87,"bn.js":16}],86:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -26349,7 +26352,7 @@ exports.default = {
if (_util2.default.getWebCrypto()) {
let keyPair;
let keyGenOpt;
if (window.crypto && window.crypto.subtle || window.msCrypto) {
if (global.crypto && global.crypto.subtle || global.msCrypto) {
// current standard spec
keyGenOpt = {
name: 'RSASSA-PKCS1-v1_5',
@ -26361,7 +26364,7 @@ exports.default = {
};
keyPair = webCrypto.generateKey(keyGenOpt, true, ['sign', 'verify']);
keyPair = await promisifyIE11Op(keyPair, 'Error generating RSA key pair.');
} else if (window.crypto && window.crypto.webkitSubtle) {
} else if (global.crypto && global.crypto.webkitSubtle) {
// outdated spec implemented by old Webkit
keyGenOpt = {
name: 'RSA-OAEP',
@ -26715,7 +26718,9 @@ function publicToJwk(n, e) {
};
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../../config":57,"../../enums":91,"../../type/mpi":133,"../../util":136,"../pkcs1":74,"../random":87,"./prime":85,"asn1.js":"asn1.js","bn.js":16}],87:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -26772,8 +26777,8 @@ exports.default = {
const buf = new Uint8Array(length);
if (typeof crypto !== 'undefined' && crypto.getRandomValues) {
crypto.getRandomValues(buf);
} else if (typeof window !== 'undefined' && typeof window.msCrypto === 'object' && typeof window.msCrypto.getRandomValues === 'function') {
window.msCrypto.getRandomValues(buf);
} else if (typeof global !== 'undefined' && typeof global.msCrypto === 'object' && typeof global.msCrypto.getRandomValues === 'function') {
global.msCrypto.getRandomValues(buf);
} else if (nodeCrypto) {
const bytes = nodeCrypto.randomBytes(buf.length);
buf.set(bytes);
@ -26876,6 +26881,7 @@ RandomBuffer.prototype.get = async function (buf) {
}
};
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../util":136,"bn.js":16,"crypto":"crypto"}],88:[function(require,module,exports){
'use strict';
@ -27349,13 +27355,14 @@ function dearmor(input) {
}
}));
data = _webStreamTools2.default.transformPair(data, async (readable, writable) => {
const checksumVerified = getCheckSum(_webStreamTools2.default.passiveClone(readable));
const checksumVerified = _webStreamTools2.default.readToEnd(getCheckSum(_webStreamTools2.default.passiveClone(readable)));
checksumVerified.catch(() => {});
await _webStreamTools2.default.pipe(readable, writable, {
preventClose: true
});
const writer = _webStreamTools2.default.getWriter(writable);
try {
const checksumVerifiedString = await _webStreamTools2.default.readToEnd(checksumVerified);
const checksumVerifiedString = await checksumVerified;
if (checksum !== checksumVerifiedString && (checksum || _config2.default.checksum_required)) {
throw new Error("Ascii armor integrity check on message failed: '" + checksum + "' should be '" + checksumVerifiedString + "'");
}
@ -28099,6 +28106,7 @@ exports.default = {
};
},{}],92:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -28120,7 +28128,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
*/
function HKP(keyServerBaseUrl) {
this._baseUrl = keyServerBaseUrl || _config2.default.keyserver;
this._fetch = typeof window !== 'undefined' ? window.fetch : require('node-fetch');
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
}
/**
@ -28199,6 +28207,7 @@ HKP.prototype.upload = function (publicKeyArmored) {
exports.default = HKP;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./config":57,"node-fetch":"node-fetch"}],93:[function(require,module,exports){
'use strict';
@ -29720,6 +29729,20 @@ Key.prototype.validate = async function () {
return signature.verify(signingKeyPacket, signatureType, data);
};
/**
* Clear private key parameters
*/
Key.prototype.clearPrivateParams = function () {
if (!this.isPrivate()) {
throw new Error("Can't clear private parameters of a public key");
}
this.getKeys().forEach(({ keyPacket }) => {
if (keyPacket.isDecrypted()) {
keyPacket.clearPrivateParams();
}
});
};
/**
* Checks if a signature on a key is revoked
* @param {module:packet.SecretKey|
@ -30824,6 +30847,7 @@ KeyArray.prototype.removeForId = function (keyId) {
exports.default = Keyring;
},{"../key":96,"./localstore":102}],102:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -30882,8 +30906,8 @@ function LocalStore(prefix) {
prefix = prefix || 'openpgp-';
this.publicKeysItem = prefix + this.publicKeysItem;
this.privateKeysItem = prefix + this.privateKeysItem;
if (typeof window !== 'undefined' && window.localStorage) {
this.storage = window.localStorage;
if (typeof global !== 'undefined' && global.localStorage) {
this.storage = global.localStorage;
} else {
this.storage = new (require('node-localstorage').LocalStorage)(_config2.default.node_store);
}
@ -30961,6 +30985,7 @@ async function storeKeys(storage, itemname, keys) {
exports.default = LocalStore;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../config":57,"../key":96,"../util":136,"node-localstorage":"node-localstorage","web-stream-tools":53}],103:[function(require,module,exports){
'use strict';
@ -31612,7 +31637,8 @@ Message.prototype.verify = async function (keys, date = new Date(), streaming) {
onePassSig.correspondingSigReject = reject;
});
onePassSig.signatureData = _webStreamTools2.default.fromAsync(async () => (await onePassSig.correspondingSig).signatureData);
onePassSig.hashed = await onePassSig.hash(onePassSig.signatureType, literalDataList[0], undefined, false, streaming);
onePassSig.hashed = _webStreamTools2.default.readToEnd((await onePassSig.hash(onePassSig.signatureType, literalDataList[0], undefined, false, streaming)));
onePassSig.hashed.catch(() => {});
}));
msg.packets.stream = _webStreamTools2.default.transformPair(msg.packets.stream, async (readable, writable) => {
const reader = _webStreamTools2.default.getReader(readable);
@ -31858,6 +31884,7 @@ function fromBinary(bytes, filename, date = new Date(), type = 'binary') {
}
},{"./config":57,"./crypto":72,"./encoding/armor":89,"./enums":91,"./key":96,"./packet":109,"./signature":129,"./type/keyid":132,"./util":136,"web-stream-tools":53}],105:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -31971,7 +31998,7 @@ let asyncProxy; // instance of the asyncproxy
*/
async function initWorker({ path = 'openpgp.worker.js', n = 1, workers = [] } = {}) {
if (workers.length || typeof window !== 'undefined' && window.Worker && window.MessageChannel) {
if (workers.length || typeof global !== 'undefined' && global.Worker && global.MessageChannel) {
const proxy = new _async_proxy2.default({ path, n, workers, config: _config2.default });
const loaded = await proxy.loaded();
if (loaded) {
@ -31993,8 +32020,13 @@ function getWorker() {
/**
* Cleanup the current instance of the web worker.
*/
function destroyWorker() {
async function destroyWorker() {
const proxy = asyncProxy;
asyncProxy = undefined;
if (proxy) {
await proxy.clearKeyCache();
proxy.terminate();
}
}
//////////////////////
@ -32618,6 +32650,7 @@ function nativeAEAD() {
return _config2.default.aead_protect && (_config2.default.aead_mode === _enums2.default.aead.eax || _config2.default.aead_mode === _enums2.default.aead.experimental_gcm) && _util2.default.getWebCrypto();
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./cleartext":55,"./config/config":56,"./enums":91,"./key":96,"./message":104,"./polyfills":128,"./util":136,"./worker/async_proxy":138,"web-stream-tools":53}],106:[function(require,module,exports){
'use strict';
@ -32946,6 +32979,7 @@ function verificationObjectToClone(verObject) {
try {
await verified;
delete packets[0].signature;
delete packets[0].hashed;
} catch (e) {}
return packets;
});
@ -35246,7 +35280,7 @@ SecretKey.prototype.generate = async function (bits, curve) {
};
/**
* Clear private params, return to initial state
* Clear private key parameters
*/
SecretKey.prototype.clearPrivateParams = function () {
if (this.s2k && this.s2k.type === 'gnu-dummy') {
@ -35254,11 +35288,12 @@ SecretKey.prototype.clearPrivateParams = function () {
return;
}
if (!this.keyMaterial) {
throw new Error('If secret key is not encrypted, clearing private params is irreversible.');
}
const algo = _enums2.default.write(_enums2.default.publicKey, this.algorithm);
this.params = this.params.slice(0, _crypto2.default.getPubKeyParamTypes(algo).length);
const publicParamCount = _crypto2.default.getPubKeyParamTypes(algo).length;
this.params.slice(publicParamCount).forEach(param => {
param.data.fill(0);
});
this.params.length = publicParamCount;
this.isEncrypted = true;
};
@ -36064,7 +36099,7 @@ Signature.prototype.verify = async function (key, signatureType, data, detached
let toHash;
let hash;
if (this.hashed) {
hash = this.hashed;
hash = await this.hashed;
} else {
toHash = this.toHash(signatureType, data, detached);
if (!streaming) toHash = await _webStreamTools2.default.readToEnd(toHash);
@ -37143,14 +37178,14 @@ var _util2 = _interopRequireDefault(_util);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
if (typeof window !== 'undefined') {
if (typeof global !== 'undefined') {
/********************************************************************
* NOTE: This list is duplicated in Gruntfile.js, *
* so that these polyfills are only included in the compat bundle. *
********************************************************************/
try {
if (typeof window.fetch === 'undefined') {
if (typeof global.fetch === 'undefined') {
require('whatwg-fetch');
}
if (typeof Array.prototype.fill === 'undefined') {
@ -38632,7 +38667,7 @@ exports.default = {
return;
}
return typeof window !== 'undefined' && window.crypto && window.crypto.subtle;
return typeof global !== 'undefined' && global.crypto && global.crypto.subtle;
},
/**
@ -38647,12 +38682,12 @@ exports.default = {
return;
}
if (typeof window !== 'undefined') {
if (window.crypto) {
return window.crypto.subtle || window.crypto.webkitSubtle;
if (typeof global !== 'undefined') {
if (global.crypto) {
return global.crypto.subtle || global.crypto.webkitSubtle;
}
if (window.msCrypto) {
return window.msCrypto.subtle;
if (global.msCrypto) {
return global.msCrypto.subtle;
}
}
},
@ -38873,6 +38908,7 @@ exports.default = {
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./config":57,"./encoding/base64":90,"./util":136,"email-addresses":17,"web-stream-tools":53}],137:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -38924,7 +38960,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
* @constructor
*/
function WKD() {
this._fetch = typeof window !== 'undefined' ? window.fetch : require('node-fetch');
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
}
/**
@ -38974,6 +39010,7 @@ WKD.prototype.lookup = async function (options) {
exports.default = WKD;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./crypto":72,"./key":96,"./util":136,"node-fetch":"node-fetch"}],138:[function(require,module,exports){
'use strict';
@ -39128,6 +39165,20 @@ AsyncProxy.prototype.seedRandom = async function (workerId, size) {
this.workers[workerId].postMessage({ event: 'seed-random', buf }, _util2.default.getTransferables(buf, true));
};
/**
* Clear key caches
* @async
*/
AsyncProxy.prototype.clearKeyCache = async function () {
await Promise.all(this.workers.map(worker => new Promise((resolve, reject) => {
const id = this.getID();
worker.postMessage({ id, event: 'clear-key-cache' });
this.tasks[id] = { resolve, reject };
})));
};
/**
* Terminates the workers
*/

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,5 @@
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
(function (global){
// GPG4Browsers - An OpenPGP implementation in javascript
// Copyright (C) 2011 Recurity Labs GmbH
//
@ -29,10 +30,8 @@
* @module worker/worker
*/
self.window = self; // to make UMD bundles work
importScripts('openpgp.js');
var openpgp = window.openpgp;
var openpgp = global.openpgp;
var randomQueue = [];
var MAX_SIZE_RANDOM_BUFFER = 60000;
@ -93,7 +92,7 @@ function configure(config) {
}
/**
* Seed the library with entropy gathered window.crypto.getRandomValues
* Seed the library with entropy gathered global.crypto.getRandomValues
* as this api is only avalible in the main window.
* @param {ArrayBuffer} buffer Some random bytes
*/
@ -120,6 +119,16 @@ function getCachedKey(key) {
* @param {Object} options The api function's options
*/
function delegate(id, method, options) {
if (method === 'clear-key-cache') {
Array.from(keyCache.values()).forEach(key => {
if (key.isPrivate()) {
key.clearPrivateParams();
}
});
keyCache.clear();
response({ id, event: 'method-return' });
return;
}
if (typeof openpgp[method] !== 'function') {
response({ id:id, event:'method-return', err:'Unknown Worker Event' });
return;
@ -159,4 +168,5 @@ function response(event) {
*/
postMessage({ event: 'loaded' });
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{}]},{},[1]);

View File

@ -1,2 +1,2 @@
/*! OpenPGP.js v4.8.0 - 2020-01-14 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(a,s){if(!t[a]){if(!n[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(i)return i(a,!0);var c=new Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[a]={exports:{}};n[a][0].call(f.exports,function(e){return o(n[a][1][e]||e)},f,f.exports,e,n,t,r)}return t[a].exports}for(var i="function"==typeof require&&require,a=0;a<r.length;a++)o(r[a]);return o}}()({1:[function(e,n,t){self.window=self,importScripts("openpgp.min.js");var r=window.openpgp,o=[],i=6e4;r.crypto.random.randomBuffer.init(i,function(){return o.length||self.postMessage({event:"request-seed",amount:i}),new Promise(function(e){o.push(e)})}),self.onmessage=function(e){var n,t=e.data||{};switch(t.event){case"configure":n=t.config,Object.keys(n).forEach(function(e){r.config[e]=n[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));r.crypto.random.randomBuffer.set(e)}(t.buf);var i=o;o=[];for(var a=0;a<i.length;a++)i[a]();break;default:!function(e,n,t){if("function"!=typeof r[n])return void u({id:e,event:"method-return",err:"Unknown Worker Event"});r.util.restoreStreams(t),(t=r.packet.clone.parseClonedPackets(t,n)).publicKeys&&(t.publicKeys=t.publicKeys.map(s));t.privateKeys&&(t.privateKeys=t.privateKeys.map(s));r[n](t).then(function(n){u({id:e,event:"method-return",data:r.packet.clone.clonePackets(n)})}).catch(function(n){r.util.print_debug_error(n),u({id:e,event:"method-return",err:n.message,stack:n.stack})})}(t.id,t.event,t.options||{})}};const a=new Map;function s(e){const n=e.armor();return a.has(n)?a.get(n):(a.set(n,e),e)}function u(e){self.postMessage(e,r.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})},{}]},{},[1]);
/*! OpenPGP.js v4.8.1 - 2020-01-24 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(i,s){if(!t[i]){if(!n[i]){var u="function"==typeof require&&require;if(!s&&u)return u(i,!0);if(a)return a(i,!0);var c=new Error("Cannot find module '"+i+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[i]={exports:{}};n[i][0].call(f.exports,function(e){return o(n[i][1][e]||e)},f,f.exports,e,n,t,r)}return t[i].exports}for(var a="function"==typeof require&&require,i=0;i<r.length;i++)o(r[i]);return o}}()({1:[function(e,n,t){(function(e){importScripts("openpgp.min.js");var n=e.openpgp,t=[],r=6e4;n.crypto.random.randomBuffer.init(r,function(){return t.length||self.postMessage({event:"request-seed",amount:r}),new Promise(function(e){t.push(e)})}),self.onmessage=function(e){var r,s=e.data||{};switch(s.event){case"configure":r=s.config,Object.keys(r).forEach(function(e){n.config[e]=r[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));n.crypto.random.randomBuffer.set(e)}(s.buf);var u=t;t=[];for(var c=0;c<u.length;c++)u[c]();break;default:!function(e,t,r){if("clear-key-cache"===t)return Array.from(o.values()).forEach(e=>{e.isPrivate()&&e.clearPrivateParams()}),o.clear(),void i({id:e,event:"method-return"});if("function"!=typeof n[t])return void i({id:e,event:"method-return",err:"Unknown Worker Event"});n.util.restoreStreams(r),(r=n.packet.clone.parseClonedPackets(r,t)).publicKeys&&(r.publicKeys=r.publicKeys.map(a));r.privateKeys&&(r.privateKeys=r.privateKeys.map(a));n[t](r).then(function(t){i({id:e,event:"method-return",data:n.packet.clone.clonePackets(t)})}).catch(function(t){n.util.print_debug_error(t),i({id:e,event:"method-return",err:t.message,stack:t.stack})})}(s.id,s.event,s.options||{})}};const o=new Map;function a(e){const n=e.armor();return o.has(n)?o.get(n):(o.set(n,e),e)}function i(e){self.postMessage(e,n.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[1]);

113
dist/openpgp.js vendored
View File

@ -25050,7 +25050,7 @@ exports.default = {
* @memberof module:config
* @property {String} versionstring A version string to be included in armored messages
*/
versionstring: "OpenPGP.js v4.8.0",
versionstring: "OpenPGP.js v4.8.1",
/**
* @memberof module:config
* @property {String} commentstring A comment string to be included in armored messages
@ -30152,6 +30152,7 @@ exports.default = {
};
},{"./curves":100,"./ecdh":101,"./ecdsa":102,"./eddsa":103}],105:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -30209,7 +30210,7 @@ function keyFromPublic(indutnyCurve, pub) {
}
/**
* Load elliptic on demand to the window.openpgp.elliptic
* Load elliptic on demand to global.openpgp.elliptic
* @returns {Promise<elliptic>}
*/
async function loadEllipticPromise() {
@ -30220,10 +30221,10 @@ async function loadEllipticPromise() {
const mainUrl = URL.createObjectURL(new Blob([ellipticContents], { type: 'text/javascript' }));
await (0, _lightweight_helper.loadScript)(mainUrl);
URL.revokeObjectURL(mainUrl);
if (!window.openpgp.elliptic) {
if (!global.openpgp.elliptic) {
throw new Error('Elliptic library failed to load correctly');
}
return window.openpgp.elliptic;
return global.openpgp.elliptic;
}
let ellipticPromise;
@ -30253,6 +30254,7 @@ async function getIndutnyCurve(name) {
return new elliptic.ec(name);
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../../../config":79,"../../../lightweight_helper":125,"../../../util":158,"elliptic":18}],106:[function(require,module,exports){
'use strict';
@ -30516,6 +30518,7 @@ async function millerRabin(n, k, rand) {
}
},{"../random":109,"bn.js":16}],108:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -30736,7 +30739,7 @@ exports.default = {
if (_util2.default.getWebCrypto()) {
let keyPair;
let keyGenOpt;
if (window.crypto && window.crypto.subtle || window.msCrypto) {
if (global.crypto && global.crypto.subtle || global.msCrypto) {
// current standard spec
keyGenOpt = {
name: 'RSASSA-PKCS1-v1_5',
@ -30748,7 +30751,7 @@ exports.default = {
};
keyPair = webCrypto.generateKey(keyGenOpt, true, ['sign', 'verify']);
keyPair = await promisifyIE11Op(keyPair, 'Error generating RSA key pair.');
} else if (window.crypto && window.crypto.webkitSubtle) {
} else if (global.crypto && global.crypto.webkitSubtle) {
// outdated spec implemented by old Webkit
keyGenOpt = {
name: 'RSA-OAEP',
@ -31102,7 +31105,9 @@ function publicToJwk(n, e) {
};
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../../config":79,"../../enums":113,"../../type/mpi":155,"../../util":158,"../pkcs1":96,"../random":109,"./prime":107,"asn1.js":"asn1.js","bn.js":16}],109:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -31159,8 +31164,8 @@ exports.default = {
const buf = new Uint8Array(length);
if (typeof crypto !== 'undefined' && crypto.getRandomValues) {
crypto.getRandomValues(buf);
} else if (typeof window !== 'undefined' && typeof window.msCrypto === 'object' && typeof window.msCrypto.getRandomValues === 'function') {
window.msCrypto.getRandomValues(buf);
} else if (typeof global !== 'undefined' && typeof global.msCrypto === 'object' && typeof global.msCrypto.getRandomValues === 'function') {
global.msCrypto.getRandomValues(buf);
} else if (nodeCrypto) {
const bytes = nodeCrypto.randomBytes(buf.length);
buf.set(bytes);
@ -31263,6 +31268,7 @@ RandomBuffer.prototype.get = async function (buf) {
}
};
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../util":158,"bn.js":16,"crypto":"crypto"}],110:[function(require,module,exports){
'use strict';
@ -31736,13 +31742,14 @@ function dearmor(input) {
}
}));
data = _webStreamTools2.default.transformPair(data, async (readable, writable) => {
const checksumVerified = getCheckSum(_webStreamTools2.default.passiveClone(readable));
const checksumVerified = _webStreamTools2.default.readToEnd(getCheckSum(_webStreamTools2.default.passiveClone(readable)));
checksumVerified.catch(() => {});
await _webStreamTools2.default.pipe(readable, writable, {
preventClose: true
});
const writer = _webStreamTools2.default.getWriter(writable);
try {
const checksumVerifiedString = await _webStreamTools2.default.readToEnd(checksumVerified);
const checksumVerifiedString = await checksumVerified;
if (checksum !== checksumVerifiedString && (checksum || _config2.default.checksum_required)) {
throw new Error("Ascii armor integrity check on message failed: '" + checksum + "' should be '" + checksumVerifiedString + "'");
}
@ -32486,6 +32493,7 @@ exports.default = {
};
},{}],114:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -32507,7 +32515,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
*/
function HKP(keyServerBaseUrl) {
this._baseUrl = keyServerBaseUrl || _config2.default.keyserver;
this._fetch = typeof window !== 'undefined' ? window.fetch : require('node-fetch');
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
}
/**
@ -32586,6 +32594,7 @@ HKP.prototype.upload = function (publicKeyArmored) {
exports.default = HKP;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./config":79,"node-fetch":"node-fetch"}],115:[function(require,module,exports){
'use strict';
@ -34107,6 +34116,20 @@ Key.prototype.validate = async function () {
return signature.verify(signingKeyPacket, signatureType, data);
};
/**
* Clear private key parameters
*/
Key.prototype.clearPrivateParams = function () {
if (!this.isPrivate()) {
throw new Error("Can't clear private parameters of a public key");
}
this.getKeys().forEach(({ keyPacket }) => {
if (keyPacket.isDecrypted()) {
keyPacket.clearPrivateParams();
}
});
};
/**
* Checks if a signature on a key is revoked
* @param {module:packet.SecretKey|
@ -35211,6 +35234,7 @@ KeyArray.prototype.removeForId = function (keyId) {
exports.default = Keyring;
},{"../key":118,"./localstore":124}],124:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -35269,8 +35293,8 @@ function LocalStore(prefix) {
prefix = prefix || 'openpgp-';
this.publicKeysItem = prefix + this.publicKeysItem;
this.privateKeysItem = prefix + this.privateKeysItem;
if (typeof window !== 'undefined' && window.localStorage) {
this.storage = window.localStorage;
if (typeof global !== 'undefined' && global.localStorage) {
this.storage = global.localStorage;
} else {
this.storage = new (require('node-localstorage').LocalStorage)(_config2.default.node_store);
}
@ -35348,6 +35372,7 @@ async function storeKeys(storage, itemname, keys) {
exports.default = LocalStore;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"../config":79,"../key":118,"../util":158,"node-localstorage":"node-localstorage","web-stream-tools":75}],125:[function(require,module,exports){
'use strict';
@ -35999,7 +36024,8 @@ Message.prototype.verify = async function (keys, date = new Date(), streaming) {
onePassSig.correspondingSigReject = reject;
});
onePassSig.signatureData = _webStreamTools2.default.fromAsync(async () => (await onePassSig.correspondingSig).signatureData);
onePassSig.hashed = await onePassSig.hash(onePassSig.signatureType, literalDataList[0], undefined, false, streaming);
onePassSig.hashed = _webStreamTools2.default.readToEnd((await onePassSig.hash(onePassSig.signatureType, literalDataList[0], undefined, false, streaming)));
onePassSig.hashed.catch(() => {});
}));
msg.packets.stream = _webStreamTools2.default.transformPair(msg.packets.stream, async (readable, writable) => {
const reader = _webStreamTools2.default.getReader(readable);
@ -36245,6 +36271,7 @@ function fromBinary(bytes, filename, date = new Date(), type = 'binary') {
}
},{"./config":79,"./crypto":94,"./encoding/armor":111,"./enums":113,"./key":118,"./packet":131,"./signature":151,"./type/keyid":154,"./util":158,"web-stream-tools":75}],127:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -36358,7 +36385,7 @@ let asyncProxy; // instance of the asyncproxy
*/
async function initWorker({ path = 'openpgp.worker.js', n = 1, workers = [] } = {}) {
if (workers.length || typeof window !== 'undefined' && window.Worker && window.MessageChannel) {
if (workers.length || typeof global !== 'undefined' && global.Worker && global.MessageChannel) {
const proxy = new _async_proxy2.default({ path, n, workers, config: _config2.default });
const loaded = await proxy.loaded();
if (loaded) {
@ -36380,8 +36407,13 @@ function getWorker() {
/**
* Cleanup the current instance of the web worker.
*/
function destroyWorker() {
async function destroyWorker() {
const proxy = asyncProxy;
asyncProxy = undefined;
if (proxy) {
await proxy.clearKeyCache();
proxy.terminate();
}
}
//////////////////////
@ -37005,6 +37037,7 @@ function nativeAEAD() {
return _config2.default.aead_protect && (_config2.default.aead_mode === _enums2.default.aead.eax || _config2.default.aead_mode === _enums2.default.aead.experimental_gcm) && _util2.default.getWebCrypto();
}
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./cleartext":77,"./config/config":78,"./enums":113,"./key":118,"./message":126,"./polyfills":150,"./util":158,"./worker/async_proxy":160,"web-stream-tools":75}],128:[function(require,module,exports){
'use strict';
@ -37333,6 +37366,7 @@ function verificationObjectToClone(verObject) {
try {
await verified;
delete packets[0].signature;
delete packets[0].hashed;
} catch (e) {}
return packets;
});
@ -39633,7 +39667,7 @@ SecretKey.prototype.generate = async function (bits, curve) {
};
/**
* Clear private params, return to initial state
* Clear private key parameters
*/
SecretKey.prototype.clearPrivateParams = function () {
if (this.s2k && this.s2k.type === 'gnu-dummy') {
@ -39641,11 +39675,12 @@ SecretKey.prototype.clearPrivateParams = function () {
return;
}
if (!this.keyMaterial) {
throw new Error('If secret key is not encrypted, clearing private params is irreversible.');
}
const algo = _enums2.default.write(_enums2.default.publicKey, this.algorithm);
this.params = this.params.slice(0, _crypto2.default.getPubKeyParamTypes(algo).length);
const publicParamCount = _crypto2.default.getPubKeyParamTypes(algo).length;
this.params.slice(publicParamCount).forEach(param => {
param.data.fill(0);
});
this.params.length = publicParamCount;
this.isEncrypted = true;
};
@ -40451,7 +40486,7 @@ Signature.prototype.verify = async function (key, signatureType, data, detached
let toHash;
let hash;
if (this.hashed) {
hash = this.hashed;
hash = await this.hashed;
} else {
toHash = this.toHash(signatureType, data, detached);
if (!streaming) toHash = await _webStreamTools2.default.readToEnd(toHash);
@ -41530,14 +41565,14 @@ var _util2 = _interopRequireDefault(_util);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
if (typeof window !== 'undefined') {
if (typeof global !== 'undefined') {
/********************************************************************
* NOTE: This list is duplicated in Gruntfile.js, *
* so that these polyfills are only included in the compat bundle. *
********************************************************************/
try {
if (typeof window.fetch === 'undefined') {
if (typeof global.fetch === 'undefined') {
require('whatwg-fetch');
}
if (typeof Array.prototype.fill === 'undefined') {
@ -43019,7 +43054,7 @@ exports.default = {
return;
}
return typeof window !== 'undefined' && window.crypto && window.crypto.subtle;
return typeof global !== 'undefined' && global.crypto && global.crypto.subtle;
},
/**
@ -43034,12 +43069,12 @@ exports.default = {
return;
}
if (typeof window !== 'undefined') {
if (window.crypto) {
return window.crypto.subtle || window.crypto.webkitSubtle;
if (typeof global !== 'undefined') {
if (global.crypto) {
return global.crypto.subtle || global.crypto.webkitSubtle;
}
if (window.msCrypto) {
return window.msCrypto.subtle;
if (global.msCrypto) {
return global.msCrypto.subtle;
}
}
},
@ -43260,6 +43295,7 @@ exports.default = {
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./config":79,"./encoding/base64":112,"./util":158,"email-addresses":33,"web-stream-tools":75}],159:[function(require,module,exports){
(function (global){
'use strict';
Object.defineProperty(exports, "__esModule", {
@ -43311,7 +43347,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
* @constructor
*/
function WKD() {
this._fetch = typeof window !== 'undefined' ? window.fetch : require('node-fetch');
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
}
/**
@ -43361,6 +43397,7 @@ WKD.prototype.lookup = async function (options) {
exports.default = WKD;
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./crypto":94,"./key":118,"./util":158,"node-fetch":"node-fetch"}],160:[function(require,module,exports){
'use strict';
@ -43515,6 +43552,20 @@ AsyncProxy.prototype.seedRandom = async function (workerId, size) {
this.workers[workerId].postMessage({ event: 'seed-random', buf }, _util2.default.getTransferables(buf, true));
};
/**
* Clear key caches
* @async
*/
AsyncProxy.prototype.clearKeyCache = async function () {
await Promise.all(this.workers.map(worker => new Promise((resolve, reject) => {
const id = this.getID();
worker.postMessage({ id, event: 'clear-key-cache' });
this.tasks[id] = { resolve, reject };
})));
};
/**
* Terminates the workers
*/

4
dist/openpgp.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,5 @@
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
(function (global){
// GPG4Browsers - An OpenPGP implementation in javascript
// Copyright (C) 2011 Recurity Labs GmbH
//
@ -29,10 +30,8 @@
* @module worker/worker
*/
self.window = self; // to make UMD bundles work
importScripts('openpgp.js');
var openpgp = window.openpgp;
var openpgp = global.openpgp;
var randomQueue = [];
var MAX_SIZE_RANDOM_BUFFER = 60000;
@ -93,7 +92,7 @@ function configure(config) {
}
/**
* Seed the library with entropy gathered window.crypto.getRandomValues
* Seed the library with entropy gathered global.crypto.getRandomValues
* as this api is only avalible in the main window.
* @param {ArrayBuffer} buffer Some random bytes
*/
@ -120,6 +119,16 @@ function getCachedKey(key) {
* @param {Object} options The api function's options
*/
function delegate(id, method, options) {
if (method === 'clear-key-cache') {
Array.from(keyCache.values()).forEach(key => {
if (key.isPrivate()) {
key.clearPrivateParams();
}
});
keyCache.clear();
response({ id, event: 'method-return' });
return;
}
if (typeof openpgp[method] !== 'function') {
response({ id:id, event:'method-return', err:'Unknown Worker Event' });
return;
@ -159,4 +168,5 @@ function response(event) {
*/
postMessage({ event: 'loaded' });
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{}]},{},[1]);

View File

@ -1,2 +1,2 @@
/*! OpenPGP.js v4.8.0 - 2020-01-14 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(a,s){if(!t[a]){if(!n[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(i)return i(a,!0);var c=new Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[a]={exports:{}};n[a][0].call(f.exports,function(e){return o(n[a][1][e]||e)},f,f.exports,e,n,t,r)}return t[a].exports}for(var i="function"==typeof require&&require,a=0;a<r.length;a++)o(r[a]);return o}}()({1:[function(e,n,t){self.window=self,importScripts("openpgp.min.js");var r=window.openpgp,o=[],i=6e4;r.crypto.random.randomBuffer.init(i,function(){return o.length||self.postMessage({event:"request-seed",amount:i}),new Promise(function(e){o.push(e)})}),self.onmessage=function(e){var n,t=e.data||{};switch(t.event){case"configure":n=t.config,Object.keys(n).forEach(function(e){r.config[e]=n[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));r.crypto.random.randomBuffer.set(e)}(t.buf);var i=o;o=[];for(var a=0;a<i.length;a++)i[a]();break;default:!function(e,n,t){if("function"!=typeof r[n])return void u({id:e,event:"method-return",err:"Unknown Worker Event"});r.util.restoreStreams(t),(t=r.packet.clone.parseClonedPackets(t,n)).publicKeys&&(t.publicKeys=t.publicKeys.map(s));t.privateKeys&&(t.privateKeys=t.privateKeys.map(s));r[n](t).then(function(n){u({id:e,event:"method-return",data:r.packet.clone.clonePackets(n)})}).catch(function(n){r.util.print_debug_error(n),u({id:e,event:"method-return",err:n.message,stack:n.stack})})}(t.id,t.event,t.options||{})}};const a=new Map;function s(e){const n=e.armor();return a.has(n)?a.get(n):(a.set(n,e),e)}function u(e){self.postMessage(e,r.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})},{}]},{},[1]);
/*! OpenPGP.js v4.8.1 - 2020-01-24 - this is LGPL licensed code, see LICENSE/our website https://openpgpjs.org/ for more information. */
!function(){return function e(n,t,r){function o(i,s){if(!t[i]){if(!n[i]){var u="function"==typeof require&&require;if(!s&&u)return u(i,!0);if(a)return a(i,!0);var c=new Error("Cannot find module '"+i+"'");throw c.code="MODULE_NOT_FOUND",c}var f=t[i]={exports:{}};n[i][0].call(f.exports,function(e){return o(n[i][1][e]||e)},f,f.exports,e,n,t,r)}return t[i].exports}for(var a="function"==typeof require&&require,i=0;i<r.length;i++)o(r[i]);return o}}()({1:[function(e,n,t){(function(e){importScripts("openpgp.min.js");var n=e.openpgp,t=[],r=6e4;n.crypto.random.randomBuffer.init(r,function(){return t.length||self.postMessage({event:"request-seed",amount:r}),new Promise(function(e){t.push(e)})}),self.onmessage=function(e){var r,s=e.data||{};switch(s.event){case"configure":r=s.config,Object.keys(r).forEach(function(e){n.config[e]=r[e]});break;case"seed-random":!function(e){e instanceof Uint8Array||(e=new Uint8Array(e));n.crypto.random.randomBuffer.set(e)}(s.buf);var u=t;t=[];for(var c=0;c<u.length;c++)u[c]();break;default:!function(e,t,r){if("clear-key-cache"===t)return Array.from(o.values()).forEach(e=>{e.isPrivate()&&e.clearPrivateParams()}),o.clear(),void i({id:e,event:"method-return"});if("function"!=typeof n[t])return void i({id:e,event:"method-return",err:"Unknown Worker Event"});n.util.restoreStreams(r),(r=n.packet.clone.parseClonedPackets(r,t)).publicKeys&&(r.publicKeys=r.publicKeys.map(a));r.privateKeys&&(r.privateKeys=r.privateKeys.map(a));n[t](r).then(function(t){i({id:e,event:"method-return",data:n.packet.clone.clonePackets(t)})}).catch(function(t){n.util.print_debug_error(t),i({id:e,event:"method-return",err:t.message,stack:t.stack})})}(s.id,s.event,s.options||{})}};const o=new Map;function a(e){const n=e.armor();return o.has(n)?o.get(n):(o.set(n,e),e)}function i(e){self.postMessage(e,n.util.getTransferables(e.data,!0))}postMessage({event:"loaded"})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[1]);

1463
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"name": "openpgp",
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
"version": "4.8.0",
"version": "4.8.1",
"license": "LGPL-3.0+",
"homepage": "https://openpgpjs.org/",
"engines": {