diff --git a/README.md b/README.md
index dcfd19cd..4ef15963 100644
--- a/README.md
+++ b/README.md
@@ -1,19 +1,18 @@
OpenPGP.js [](https://automate.browserstack.com/public-build/eEkxVVM1TytwOGJNWEdnTjk4Y0VNUUNyR3pXcEtJUGRXOVFBRjVNT1JpUT0tLTZYUlZaMWdtQWs4Z0ROS3grRXc2bFE9PQ==--4a9cac0d6ea009d81aff66de0dbb239edd1aef3c) [](https://gitter.im/openpgpjs/openpgpjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
==========
-[OpenPGP.js](https://openpgpjs.org/) is a JavaScript implementation of the OpenPGP protocol. This is defined in [RFC 4880](https://tools.ietf.org/html/rfc4880).
+[OpenPGP.js](https://openpgpjs.org/) is a JavaScript implementation of the OpenPGP protocol. It implements [RFC4880](https://tools.ietf.org/html/rfc4880) and parts of [RFC4880bis](https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-10).
-
**Table of Contents**
- [OpenPGP.js](#openpgpjs)
- [Platform Support](#platform-support)
- [Performance](#performance)
- [Getting started](#getting-started)
- - [Npm](#npm)
- - [Bower](#bower)
+ - [Node.js](#nodejs)
+ - [Browser (webpack)](#browser-webpack)
+ - [Browser (plain files)](#browser-plain-files)
- [Examples](#examples)
- - [Set up](#set-up)
- [Encrypt and decrypt *Uint8Array* data with a password](#encrypt-and-decrypt-uint8array-data-with-a-password)
- [Encrypt and decrypt *String* data with PGP keys](#encrypt-and-decrypt-string-data-with-pgp-keys)
- [Encrypt with compression](#encrypt-with-compression)
@@ -32,9 +31,6 @@ OpenPGP.js [
- [How do I get involved?](#how-do-i-get-involved)
- [License](#license)
- - [Resources](#resources)
-
-
### Platform Support
@@ -58,26 +54,29 @@ library to convert back and forth between them.
### Performance
-* Version 3.0.0 of the library introduces support for public-key cryptography using [elliptic curves](https://wiki.gnupg.org/ECC). We use native implementations on browsers and Node.js when available or [Elliptic](https://github.com/indutny/elliptic) otherwise. Elliptic curve cryptography provides stronger security per bits of key, which allows for much faster operations. Currently the following curves are supported (* = when available):
+* Version 3.0.0 of the library introduces support for public-key cryptography using [elliptic curves](https://wiki.gnupg.org/ECC). We use native implementations on browsers and Node.js when available. Elliptic curve cryptography provides stronger security per bits of key, which allows for much faster operations. Currently the following curves are supported:
+ | Curve | Encryption | Signature | NodeCrypto | WebCrypto | Constant-Time |
+ |:---------------:|:----------:|:---------:|:----------:|:---------:|:-----------------:|
+ | curve25519 | ECDH | N/A | No | No | Algorithmically** |
+ | ed25519 | N/A | EdDSA | No | No | Algorithmically** |
+ | p256 | ECDH | ECDSA | Yes* | Yes* | If native*** |
+ | p384 | ECDH | ECDSA | Yes* | Yes* | If native*** |
+ | p521 | ECDH | ECDSA | Yes* | Yes* | If native*** |
+ | brainpoolP256r1 | ECDH | ECDSA | Yes* | No | If native*** |
+ | brainpoolP384r1 | ECDH | ECDSA | Yes* | No | If native*** |
+ | brainpoolP512r1 | ECDH | ECDSA | Yes* | No | If native*** |
+ | secp256k1 | ECDH | ECDSA | Yes* | No | If native*** |
- | Curve | Encryption | Signature | Elliptic | NodeCrypto | WebCrypto |
- |:--------------- |:----------:|:---------:|:--------:|:----------:|:---------:|
- | p256 | ECDH | ECDSA | Yes | Yes* | Yes* |
- | p384 | ECDH | ECDSA | Yes | Yes* | Yes* |
- | p521 | ECDH | ECDSA | Yes | Yes* | Yes* |
- | secp256k1 | ECDH | ECDSA | Yes | Yes* | No |
- | brainpoolP256r1 | ECDH | ECDSA | Yes | Yes* | No |
- | brainpoolP384r1 | ECDH | ECDSA | Yes | Yes* | No |
- | brainpoolP512r1 | ECDH | ECDSA | Yes | Yes* | No |
- | curve25519 | ECDH | N/A | Yes | No | No |
- | ed25519 | N/A | EdDSA | Yes | No | No |
+ \* when available
+ \** the curve25519 and ed25519 implementations are algorithmically constant-time, but may not be constant-time after optimizations of the JavaScript compiler
+ \*** these curves are only constant-time if the underlying native implementation is available and constant-time
* Version 2.x of the library has been built from the ground up with Uint8Arrays. This allows for much better performance and memory usage than strings.
* If the user's browser supports [native WebCrypto](https://caniuse.com/#feat=cryptography) via the `window.crypto.subtle` API, this will be used. Under Node.js the native [crypto module](https://nodejs.org/api/crypto.html#crypto_crypto) is used.
-* The library implements the [IETF proposal](https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-07) for authenticated encryption using native AES-EAX, OCB, or GCM. This makes symmetric encryption up to 30x faster on supported platforms. Since the specification has not been finalized and other OpenPGP implementations haven't adopted it yet, the feature is currently behind a flag. **Note: activating this setting can break compatibility with other OpenPGP implementations, and also with future versions of OpenPGP.js. Don't use it with messages you want to store on disk or in a database.** You can enable it by setting `openpgp.config.aeadProtect = true`.
+* The library implements the [IETF proposal](https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-10) for authenticated encryption using native AES-EAX, OCB, or GCM. This makes symmetric encryption up to 30x faster on supported platforms. Since the specification has not been finalized and other OpenPGP implementations haven't adopted it yet, the feature is currently behind a flag. **Note: activating this setting can break compatibility with other OpenPGP implementations, and also with future versions of OpenPGP.js. Don't use it with messages you want to store on disk or in a database.** You can enable it by setting `openpgp.config.aeadProtect = true`.
You can change the AEAD mode by setting one of the following options:
@@ -87,59 +86,88 @@ library to convert back and forth between them.
openpgp.config.aeadMode = openpgp.enums.aead.experimentalGcm // **Non-standard**, fastest
```
-* For environments that don't provide native crypto, the library falls back to [asm.js](https://caniuse.com/#feat=asmjs) implementations of AES, SHA-1, and SHA-256. We use [Rusha](https://github.com/srijs/rusha) and [asmCrypto Lite](https://github.com/openpgpjs/asmcrypto-lite) (a minimal subset of asmCrypto.js built specifically for OpenPGP.js).
+* For environments that don't provide native crypto, the library falls back to [asm.js](https://caniuse.com/#feat=asmjs) implementations of AES, SHA-1, and SHA-256.
### Getting started
-#### Npm
+#### Node.js
- npm install --save openpgp
+Install OpenPGP.js using npm and save it in your dependencies:
-#### Bower
+```sh
+npm install --save openpgp
+```
- bower install --save openpgp
-
-Or just fetch a minified build under [dist](https://github.com/openpgpjs/openpgpjs/tree/master/dist).
-
-
-### Examples
-
-Here are some examples of how to use the v5.x+ API. For more elaborate examples and working code, please check out the [public API unit tests](https://github.com/openpgpjs/openpgpjs/blob/master/test/general/openpgp.js). If you're upgrading from v4.x it might help to check out the [documentation](https://github.com/openpgpjs/openpgpjs#documentation).
-
-#### Set up
-
-##### Node.js
+And import it as a CommonJS module:
```js
const openpgp = require('openpgp');
```
-##### Browser
+Or as an ES6 module, from an .mjs file:
-Copy `dist/openpgp.min.js` or `dist/compat/openpgp.min.js` (depending on the browser support you need, see [Platform Support](#platform-support)) to your project folder, and load it in a script tag:
+```js
+import * as openpgp from 'openpgp';
+```
+
+#### Browser (webpack)
+
+Install OpenPGP.js using npm and save it in your devDependencies:
+
+```sh
+npm install --save-dev openpgp
+```
+
+And import it as an ES6 module:
+
+```js
+import * as openpgp from 'openpgp';
+```
+
+You can also only import the functions you need, as follows:
+
+```js
+import { readMessage, decrypt } from 'openpgp';
+```
+
+Or, if you want to use the lightweight build (which is smaller, and lazily loads non-default curves on demand):
+
+```js
+import * as openpgp from 'openpgp/lightweight';
+```
+
+To test whether the lazy loading works, try to generate a key with a non-standard curve:
+
+```js
+import { generateKey } from 'openpgp/lightweight';
+await generateKey({ curve: 'brainpoolP512r1', userIds: [{ name: 'Test', email: 'test@test.com' }] });
+```
+
+For more examples of how to generate a key, see [Generate new key pair](#generate-new-key-pair). It is recommended to use `curve25519` instead of `brainpoolP512r1` by default.
+
+
+#### Browser (plain files)
+
+Grab `openpgp.min.js` from [unpkg.com/openpgp/dist](https://unpkg.com/openpgp/dist/), and load it in a script tag:
```html
```
-To offload cryptographic operations off the main thread, you can implement a Web Worker in your application and load OpenPGP.js from there. This can be more performant if you store or fetch keys and messages directly inside the Worker, so that they don't have to be `postMessage`d there. For an example Worker implementation, see `test/worker/worker_example.js`.
-
-If you want to use the lightweight build (which is smaller, and lazily loads non-default curves on demand), copy `dist/lightweight/openpgp.min.mjs` and `dist/lightweight/elliptic.min.mjs`, and import the former:
+Or, to load OpenPGP.js as an ES6 module, grab `openpgp.min.mjs` from [unpkg.com/openpgp/dist](https://unpkg.com/openpgp/dist/), and import it as follows:
```html
```
-To test whether the lazy loading works, try:
+To offload cryptographic operations off the main thread, you can implement a Web Worker in your application and load OpenPGP.js from there. For an example Worker implementation, see `test/worker/worker_example.js`.
-```js
-await openpgp.generateKey({ curve: 'brainpoolP512r1', userIds: [{ name: 'Test', email: 'test@test.com' }] });
-```
+### Examples
-For more examples of how to generate a key, see [Generate new key pair](#generate-new-key-pair). It is recommended to use `curve25519` instead of `brainpoolP512r1` by default.
+Here are some examples of how to use OpenPGP.js v5. For more elaborate examples and working code, please check out the [public API unit tests](https://github.com/openpgpjs/openpgpjs/blob/master/test/general/openpgp.js). If you're upgrading from v4 it might help to check out the [changelog](https://github.com/openpgpjs/openpgpjs/wiki/V5-Changelog) and [documentation](https://github.com/openpgpjs/openpgpjs#documentation).
#### Encrypt and decrypt *Uint8Array* data with a password
@@ -357,19 +385,20 @@ its [Reader class](https://openpgpjs.org/web-stream-tools/Reader.html).
#### Generate new key pair
-ECC keys:
+ECC keys (smaller and faster to generate):
-Possible values for `curve` are: `curve25519`, `ed25519`, `p256`, `p384`, `p521`, `secp256k1`,
-`brainpoolP256r1`, `brainpoolP384r1`, or `brainpoolP512r1`.
+Possible values for `curve` are: `curve25519`, `ed25519`, `p256`, `p384`, `p521`,
+`brainpoolP256r1`, `brainpoolP384r1`, `brainpoolP512r1`, and `secp256k1`.
Note that both the `curve25519` and `ed25519` options generate a primary key for signing using Ed25519
and a subkey for encryption using Curve25519.
```js
(async () => {
const { privateKeyArmored, publicKeyArmored, revocationCertificate } = await openpgp.generateKey({
+ type: 'ecc', // Type of the key, defaults to ECC
+ curve: 'curve25519', // ECC curve name, defaults to curve25519
userIds: [{ name: 'Jon Smith', email: 'jon@example.com' }], // you can pass multiple user IDs
- curve: 'ed25519', // ECC curve name
- passphrase: 'super long and hard to guess secret' // protects the private key
+ passphrase: 'super long and hard to guess secret' // protects the private key
});
console.log(privateKeyArmored); // '-----BEGIN PGP PRIVATE KEY BLOCK ... '
@@ -378,14 +407,15 @@ and a subkey for encryption using Curve25519.
})();
```
-RSA keys:
+RSA keys (increased compatibility):
```js
(async () => {
const key = await openpgp.generateKey({
+ type: 'rsa', // Type of the key
+ rsaBits: 4096, // RSA key size (defaults to 4096 bits)
userIds: [{ name: 'Jon Smith', email: 'jon@example.com' }], // you can pass multiple user IDs
- rsaBits: 4096, // RSA key size
- passphrase: 'super long and hard to guess secret' // protects the private key
+ passphrase: 'super long and hard to guess secret' // protects the private key
});
})();
```
@@ -571,9 +601,7 @@ Using the private key:
### Documentation
-A jsdoc build of our code comments is available at [doc/index.html](https://openpgpjs.org/openpgpjs/doc/index.html). Public calls should generally be made through the OpenPGP object [doc/openpgp.html](https://openpgpjs.org/openpgpjs/doc/module-openpgp.html).
-
-For the documentation of `openpgp.stream`, see the documentation of [the web-stream-tools dependency](https://openpgpjs.org/web-stream-tools/).
+The full documentation is available at [openpgpjs.org](https://openpgpjs.org/openpgpjs/).
### Security Audit
@@ -602,13 +630,3 @@ You want to help, great! It's probably best to send us a message on [Gitter](htt
### License
[GNU Lesser General Public License](https://www.gnu.org/licenses/lgpl-3.0.en.html) (3.0 or any later version). Please take a look at the [LICENSE](LICENSE) file for more information.
-
-### Resources
-
-Below is a collection of resources, many of these were projects that were in someway a precursor to the current OpenPGP.js project. If you'd like to add your link here, please do so in a pull request or email to the list.
-
-* [https://www.hanewin.net/encrypt/](https://www.hanewin.net/encrypt/)
-* [https://github.com/seancolyer/gmail-crypt](https://github.com/seancolyer/gmail-crypt)
-* [https://github.com/mete0r/jspg](https://github.com/mete0r/jspg)
-* [https://github.com/GPGTools/Mobile/wiki/Introduction](https://github.com/GPGTools/Mobile/wiki/Introduction)
-* [https://github.com/gmontalvoriv/mailock](https://github.com/gmontalvoriv/mailock)
diff --git a/package-lock.json b/package-lock.json
index dc640a41..fcf09406 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -576,6 +576,12 @@
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"dev": true
},
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "dev": true
+ },
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
@@ -1298,9 +1304,9 @@
"dev": true
},
"entities": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz",
- "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz",
+ "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==",
"dev": true
},
"error-ex": {
@@ -2702,8 +2708,8 @@
}
},
"jsdoc": {
- "version": "github:openpgpjs/jsdoc#0f1816eb4553856647b4ca9561b9307b11ec4f9e",
- "from": "github:openpgpjs/jsdoc#0f1816eb4553856647b4ca9561b9307b11ec4f9e",
+ "version": "github:openpgpjs/jsdoc#ff7cb3929586868bf91deb78a26d7e217e051a0f",
+ "from": "github:openpgpjs/jsdoc#ff7cb3929586868bf91deb78a26d7e217e051a0f",
"dev": true,
"requires": {
"@babel/parser": "^7.9.4",
@@ -2722,30 +2728,12 @@
"underscore": "~1.10.2"
},
"dependencies": {
- "@babel/parser": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
- "integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
- "dev": true
- },
- "bluebird": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
- "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
- "dev": true
- },
"escape-string-regexp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
"dev": true
},
- "marked": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz",
- "integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==",
- "dev": true
- },
"mkdirp": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
@@ -2753,9 +2741,9 @@
"dev": true
},
"strip-json-comments": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz",
- "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true
}
}
@@ -3282,9 +3270,15 @@
}
},
"markdown-it-anchor": {
- "version": "5.2.7",
- "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.7.tgz",
- "integrity": "sha512-REFmIaSS6szaD1bye80DMbp7ePwsPNvLTR5HunsUcZ0SG0rWJQ+Pz24R4UlTKtjKBPhxo0v0tOBDYjZQQknW8Q==",
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz",
+ "integrity": "sha512-/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA==",
+ "dev": true
+ },
+ "marked": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz",
+ "integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==",
"dev": true
},
"mdurl": {
diff --git a/package.json b/package.json
index 35bf63c2..cf2bf47b 100644
--- a/package.json
+++ b/package.json
@@ -72,7 +72,7 @@
"esm": "^3.2.25",
"hash.js": "^1.1.3",
"http-server": "^0.12.3",
- "jsdoc": "github:openpgpjs/jsdoc#0f1816eb4553856647b4ca9561b9307b11ec4f9e",
+ "jsdoc": "github:openpgpjs/jsdoc#ff7cb3929586868bf91deb78a26d7e217e051a0f",
"karma": "^6.1.0",
"karma-browserstack-launcher": "^1.6.0",
"karma-mocha": "^2.0.1",
diff --git a/src/biginteger/bn.interface.js b/src/biginteger/bn.interface.js
index 84226097..b4616867 100644
--- a/src/biginteger/bn.interface.js
+++ b/src/biginteger/bn.interface.js
@@ -1,8 +1,15 @@
import BN from 'bn.js';
/**
+ * @fileoverview
* BigInteger implementation of basic operations
* Wrapper of bn.js library (wwww.github.com/indutny/bn.js)
+ * @module biginteger/bn
+ * @private
+ */
+
+/**
+ * @private
*/
export default class BigInteger {
/**
diff --git a/src/biginteger/native.interface.js b/src/biginteger/native.interface.js
index 20397b13..c593de80 100644
--- a/src/biginteger/native.interface.js
+++ b/src/biginteger/native.interface.js
@@ -1,10 +1,17 @@
/* eslint-disable new-cap */
/**
+ * @fileoverview
* BigInteger implementation of basic operations
* that wraps the native BigInt library.
* Operations are not constant time,
* but we try and limit timing leakage where we can
+ * @module biginteger/native
+ * @private
+ */
+
+/**
+ * @private
*/
export default class BigInteger {
/**
@@ -189,7 +196,7 @@ export default class BigInteger {
* Extended Eucleadian algorithm (http://anh.cs.luc.edu/331/notes/xgcd.pdf)
* Given a = this and b, compute (x, y) such that ax + by = gdc(a, b)
* @param {BigInteger} b second operand
- * @returns { gcd, x, y: BigInteger }
+ * @returns {{ gcd, x, y: BigInteger }}
*/
_egcd(b) {
let x = BigInt(0);
diff --git a/src/cleartext.js b/src/cleartext.js
index 0087ce8d..5574ea52 100644
--- a/src/cleartext.js
+++ b/src/cleartext.js
@@ -15,15 +15,6 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-/**
- * @requires encoding/armor
- * @requires enums
- * @requires util
- * @requires packet
- * @requires signature
- * @module cleartext
- */
-
import { armor, unarmor } from './encoding/armor';
import enums from './enums';
import util from './util';
@@ -38,8 +29,8 @@ import defaultConfig from './config';
*/
export class CleartextMessage {
/**
- * @param {String} text The cleartext of the signed message
- * @param {module:signature.Signature} signature The detached signature or an empty signature for unsigned messages
+ * @param {String} text The cleartext of the signed message
+ * @param {Signature} signature The detached signature or an empty signature for unsigned messages
*/
constructor(text, signature) {
// normalize EOL to canonical form
@@ -52,7 +43,7 @@ export class CleartextMessage {
/**
* Returns the key IDs of the keys that signed the cleartext message
- * @returns {Array} array of keyid objects
+ * @returns {Array} array of keyid objects
*/
getSigningKeyIds() {
const keyIds = [];
@@ -65,13 +56,13 @@ export class CleartextMessage {
/**
* Sign the cleartext message
- * @param {Array} privateKeys private keys with decrypted secret key data for signing
+ * @param {Array} privateKeys private keys with decrypted secret key data for signing
* @param {Signature} signature (optional) any existing detached signature
- * @param {Array} signingKeyIds (optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]
+ * @param {Array} signingKeyIds (optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]
* @param {Date} date (optional) The creation time of the signature that should be created
* @param {Array} userIds (optional) user IDs to sign with, e.g. [{ name:'Steve Sender', email:'steve@openpgp.org' }]
* @param {Object} config (optional) full configuration, defaults to openpgp.config
- * @returns {Promise} new cleartext message with signed content
+ * @returns {Promise} new cleartext message with signed content
* @async
*/
async sign(privateKeys, signature = null, signingKeyIds = [], date = new Date(), userIds = [], config = defaultConfig) {
@@ -80,13 +71,13 @@ export class CleartextMessage {
/**
* Sign the cleartext message
- * @param {Array} privateKeys private keys with decrypted secret key data for signing
+ * @param {Array} privateKeys private keys with decrypted secret key data for signing
* @param {Signature} signature (optional) any existing detached signature
- * @param {Array} signingKeyIds (optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]
+ * @param {Array} signingKeyIds (optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]
* @param {Date} date (optional) The creation time of the signature that should be created
* @param {Array} userIds (optional) user IDs to sign with, e.g. [{ name:'Steve Sender', email:'steve@openpgp.org' }]
* @param {Object} config (optional) full configuration, defaults to openpgp.config
- * @returns {Promise} new detached signature of message content
+ * @returns {Promise} new detached signature of message content
* @async
*/
async signDetached(privateKeys, signature = null, signingKeyIds = [], date = new Date(), userIds = [], config = defaultConfig) {
@@ -98,10 +89,10 @@ export class CleartextMessage {
/**
* Verify signatures of cleartext signed message
- * @param {Array} keys array of keys to verify signatures
+ * @param {Array} keys array of keys to verify signatures
* @param {Date} date (optional) Verify the signature against the given date, i.e. check signature creation time < date < expiration time
* @param {Object} config (optional) full configuration, defaults to openpgp.config
- * @returns {Promise>} list of signer's keyid and validity of signature
+ * @returns {Promise>} list of signer's keyid and validity of signature
* @async
*/
verify(keys, date = new Date(), config = defaultConfig) {
@@ -110,10 +101,10 @@ export class CleartextMessage {
/**
* Verify signatures of cleartext signed message
- * @param {Array} keys array of keys to verify signatures
+ * @param {Array} keys array of keys to verify signatures
* @param {Date} date (optional) Verify the signature against the given date, i.e. check signature creation time < date < expiration time
* @param {Object} config (optional) full configuration, defaults to openpgp.config
- * @returns {Promise>} list of signer's keyid and validity of signature
+ * @returns {Promise>} list of signer's keyid and validity of signature
* @async
*/
verifyDetached(signature, keys, date = new Date(), config = defaultConfig) {
@@ -166,7 +157,7 @@ export class CleartextMessage {
* Reads an OpenPGP cleartext signed message and returns a CleartextMessage object
* @param {String | ReadableStream} cleartextMessage text to be parsed
* @param {Object} config (optional) custom configuration settings to overwrite those in openpgp.config
- * @returns {module:cleartext.CleartextMessage} new cleartext message object
+ * @returns {CleartextMessage} new cleartext message object
* @async
* @static
*/
diff --git a/src/config/config.js b/src/config/config.js
index 868ba7e6..0c1c9d10 100644
--- a/src/config/config.js
+++ b/src/config/config.js
@@ -17,7 +17,6 @@
/**
* Global configuration values.
- * @requires enums
*/
import enums from '../enums';
diff --git a/src/crypto/aes_kw.js b/src/crypto/aes_kw.js
index 14d5839c..40bdceac 100644
--- a/src/crypto/aes_kw.js
+++ b/src/crypto/aes_kw.js
@@ -18,9 +18,8 @@
/**
* @fileoverview Implementation of RFC 3394 AES Key Wrap & Key Unwrap funcions
* @see module:crypto/public_key/elliptic/ecdh
- * @requires crypto/cipher
- * @requires util
* @module crypto/aes_kw
+ * @private
*/
import * as cipher from './cipher';
diff --git a/src/crypto/cfb.js b/src/crypto/cfb.js
index c23857fd..042cfb46 100644
--- a/src/crypto/cfb.js
+++ b/src/crypto/cfb.js
@@ -18,10 +18,8 @@
*/
/**
- * @requires web-stream-tools
- * @requires crypto/cipher
- * @requires util
* @module crypto/cfb
+ * @private
*/
import { AES_CFB } from 'asmcrypto.js/dist_es8/aes/cfb';
diff --git a/src/crypto/cipher/aes.js b/src/crypto/cipher/aes.js
index ff389480..0d0661c2 100644
--- a/src/crypto/cipher/aes.js
+++ b/src/crypto/cipher/aes.js
@@ -1,7 +1,3 @@
-/**
- * @requires asmcrypto.js
- */
-
import { AES_ECB } from 'asmcrypto.js/dist_es8/aes/ecb';
// TODO use webCrypto or nodeCrypto when possible.
diff --git a/src/crypto/cipher/index.js b/src/crypto/cipher/index.js
index daf3f222..bb97112d 100644
--- a/src/crypto/cipher/index.js
+++ b/src/crypto/cipher/index.js
@@ -1,11 +1,7 @@
/**
* @fileoverview Symmetric cryptography functions
- * @requires crypto/cipher/aes
- * @requires crypto/cipher/des
- * @requires crypto/cipher/cast5
- * @requires crypto/cipher/twofish
- * @requires crypto/cipher/blowfish
* @module crypto/cipher
+ * @private
*/
import aes from './aes';
@@ -21,7 +17,6 @@ import BF from './blowfish';
* @see {@link https://github.com/asmcrypto/asmcrypto.js|asmCrypto}
* @see {@link https://csrc.nist.gov/publications/fips/fips197/fips-197.pdf|NIST FIPS-197}
* @returns {Object}
- * @requires asmcrypto.js
*/
export const aes128 = aes(128);
/**
@@ -31,7 +26,6 @@ export const aes128 = aes(128);
* @see {@link https://github.com/asmcrypto/asmcrypto.js|asmCrypto}
* @see {@link https://csrc.nist.gov/publications/fips/fips197/fips-197.pdf|NIST FIPS-197}
* @returns {Object}
- * @requires asmcrypto.js
*/
export const aes192 = aes(192);
/**
@@ -41,7 +35,6 @@ export const aes192 = aes(192);
* @see {@link https://github.com/asmcrypto/asmcrypto.js|asmCrypto}
* @see {@link https://csrc.nist.gov/publications/fips/fips197/fips-197.pdf|NIST FIPS-197}
* @returns {Object}
- * @requires asmcrypto.js
*/
export const aes256 = aes(256);
// Not in OpenPGP specifications
diff --git a/src/crypto/cmac.js b/src/crypto/cmac.js
index 3eda17ea..ad4217a8 100644
--- a/src/crypto/cmac.js
+++ b/src/crypto/cmac.js
@@ -1,9 +1,8 @@
/**
* @fileoverview This module implements AES-CMAC on top of
* native AES-CBC using either the WebCrypto API or Node.js' crypto API.
- * @requires asmcrypto.js
- * @requires util
* @module crypto/cmac
+ * @private
*/
import { AES_CBC } from 'asmcrypto.js/dist_es8/aes/cbc';
diff --git a/src/crypto/crypto.js b/src/crypto/crypto.js
index f0da2898..9341b0bf 100644
--- a/src/crypto/crypto.js
+++ b/src/crypto/crypto.js
@@ -20,15 +20,8 @@
/**
* @fileoverview Provides functions for asymmetric encryption and decryption as
* well as key generation and parameter handling for all public-key cryptosystems.
- * @requires crypto/public_key
- * @requires crypto/cipher
- * @requires crypto/random
- * @requires type/ecdh_symkey
- * @requires type/kdf_params
- * @requires type/oid
- * @requires enums
- * @requires util
* @module crypto/crypto
+ * @private
*/
import publicKey from './public_key';
diff --git a/src/crypto/eax.js b/src/crypto/eax.js
index e59cf3ff..6a0d9abd 100644
--- a/src/crypto/eax.js
+++ b/src/crypto/eax.js
@@ -18,10 +18,8 @@
/**
* @fileoverview This module implements AES-EAX en/decryption on top of
* native AES-CTR using either the WebCrypto API or Node.js' crypto API.
- * @requires asmcrypto.js
- * @requires crypto/cmac
- * @requires util
* @module crypto/eax
+ * @private
*/
import { AES_CTR } from 'asmcrypto.js/dist_es8/aes/ctr';
diff --git a/src/crypto/gcm.js b/src/crypto/gcm.js
index 64b75567..f5de5f4c 100644
--- a/src/crypto/gcm.js
+++ b/src/crypto/gcm.js
@@ -18,9 +18,8 @@
/**
* @fileoverview This module wraps native AES-GCM en/decryption for both
* the WebCrypto api as well as node.js' crypto api.
- * @requires asmcrypto.js
- * @requires util
* @module crypto/gcm
+ * @private
*/
import { AES_GCM } from 'asmcrypto.js/dist_es8/aes/gcm';
diff --git a/src/crypto/hash/index.js b/src/crypto/hash/index.js
index 961e0a2f..fa704408 100644
--- a/src/crypto/hash/index.js
+++ b/src/crypto/hash/index.js
@@ -2,12 +2,8 @@
* @fileoverview Provides an interface to hashing functions available in Node.js or external libraries.
* @see {@link https://github.com/asmcrypto/asmcrypto.js|asmCrypto}
* @see {@link https://github.com/indutny/hash.js|hash.js}
- * @requires asmcrypto.js
- * @requires hash.js
- * @requires web-stream-tools
- * @requires crypto/hash/md5
- * @requires util
* @module crypto/hash
+ * @private
*/
import { Sha1 } from 'asmcrypto.js/dist_es8/hash/sha1/sha1';
diff --git a/src/crypto/hash/md5.js b/src/crypto/hash/md5.js
index 126c8fb1..ce2b592c 100644
--- a/src/crypto/hash/md5.js
+++ b/src/crypto/hash/md5.js
@@ -12,10 +12,6 @@
* warranty of any kind.
*/
-/**
- * @requires util
- */
-
import util from '../../util';
// MD5 Digest
diff --git a/src/crypto/index.js b/src/crypto/index.js
index ac08ed0f..eecab5bb 100644
--- a/src/crypto/index.js
+++ b/src/crypto/index.js
@@ -7,6 +7,7 @@
* @see module:crypto/random
* @see module:crypto/hash
* @module crypto
+ * @private
*/
import * as cipher from './cipher';
diff --git a/src/crypto/ocb.js b/src/crypto/ocb.js
index 8547e27e..93f86651 100644
--- a/src/crypto/ocb.js
+++ b/src/crypto/ocb.js
@@ -17,9 +17,8 @@
/**
* @fileoverview This module implements AES-OCB en/decryption.
- * @requires crypto/cipher
- * @requires util
* @module crypto/ocb
+ * @private
*/
import * as ciphers from './cipher';
diff --git a/src/crypto/pkcs1.js b/src/crypto/pkcs1.js
index d91f234e..c9e0e2ef 100644
--- a/src/crypto/pkcs1.js
+++ b/src/crypto/pkcs1.js
@@ -20,9 +20,8 @@
* @see module:crypto/public_key/rsa
* @see module:crypto/public_key/elliptic/ecdh
* @see PublicKeyEncryptedSessionKeyPacket
- * @requires crypto/random
- * @requires crypto/hash
* @module crypto/pkcs1
+ * @private
*/
import { getRandomBytes } from './random';
diff --git a/src/crypto/pkcs5.js b/src/crypto/pkcs5.js
index acb1577b..183bbb29 100644
--- a/src/crypto/pkcs5.js
+++ b/src/crypto/pkcs5.js
@@ -21,6 +21,7 @@ import util from '../util';
* @fileoverview Functions to add and remove PKCS5 padding
* @see PublicKeyEncryptedSessionKeyPacket
* @module crypto/pkcs5
+ * @private
*/
/**
diff --git a/src/crypto/public_key/dsa.js b/src/crypto/public_key/dsa.js
index a501eb39..f22d441b 100644
--- a/src/crypto/public_key/dsa.js
+++ b/src/crypto/public_key/dsa.js
@@ -17,9 +17,8 @@
/**
* @fileoverview A Digital signature algorithm implementation
- * @requires crypto/random
- * @requires util
* @module crypto/public_key/dsa
+ * @private
*/
import { getRandomBigInteger } from '../random';
import util from '../../util';
diff --git a/src/crypto/public_key/elgamal.js b/src/crypto/public_key/elgamal.js
index 81fa505b..2386f0df 100644
--- a/src/crypto/public_key/elgamal.js
+++ b/src/crypto/public_key/elgamal.js
@@ -17,9 +17,8 @@
/**
* @fileoverview ElGamal implementation
- * @requires crypto/random
- * @requires util
* @module crypto/public_key/elgamal
+ * @private
*/
import util from '../../util';
diff --git a/src/crypto/public_key/elliptic/curves.js b/src/crypto/public_key/elliptic/curves.js
index 7370f970..302cd4c8 100644
--- a/src/crypto/public_key/elliptic/curves.js
+++ b/src/crypto/public_key/elliptic/curves.js
@@ -17,14 +17,8 @@
/**
* @fileoverview Wrapper of an instance of an Elliptic Curve
- * @requires tweetnacl
- * @requires crypto/public_key/elliptic/key
- * @requires crypto/random
- * @requires enums
- * @requires util
- * @requires type/oid
- * @requires config
* @module crypto/public_key/elliptic/curve
+ * @private
*/
import nacl from 'tweetnacl/nacl-fast-light.js';
diff --git a/src/crypto/public_key/elliptic/ecdh.js b/src/crypto/public_key/elliptic/ecdh.js
index 04c97c18..1d0910ed 100644
--- a/src/crypto/public_key/elliptic/ecdh.js
+++ b/src/crypto/public_key/elliptic/ecdh.js
@@ -17,16 +17,8 @@
/**
* @fileoverview Key encryption and decryption for RFC 6637 ECDH
- * @requires tweetnacl
- * @requires crypto/public_key/elliptic/curve
- * @requires crypto/aes_kw
- * @requires crypto/cipher
- * @requires crypto/random
- * @requires crypto/hash
- * @requires type/kdf_params
- * @requires enums
- * @requires util
* @module crypto/public_key/elliptic/ecdh
+ * @private
*/
import nacl from 'tweetnacl/nacl-fast-light.js';
diff --git a/src/crypto/public_key/elliptic/ecdsa.js b/src/crypto/public_key/elliptic/ecdsa.js
index 6dacca49..461bd4ac 100644
--- a/src/crypto/public_key/elliptic/ecdsa.js
+++ b/src/crypto/public_key/elliptic/ecdsa.js
@@ -17,11 +17,8 @@
/**
* @fileoverview Implementation of ECDSA following RFC6637 for Openpgpjs
- * @requires web-stream-tools
- * @requires enums
- * @requires util
- * @requires crypto/public_key/elliptic/curves
* @module crypto/public_key/elliptic/ecdsa
+ * @private
*/
import enums from '../../../enums';
diff --git a/src/crypto/public_key/elliptic/eddsa.js b/src/crypto/public_key/elliptic/eddsa.js
index f3845228..3c5da63c 100644
--- a/src/crypto/public_key/elliptic/eddsa.js
+++ b/src/crypto/public_key/elliptic/eddsa.js
@@ -17,11 +17,8 @@
/**
* @fileoverview Implementation of EdDSA following RFC4880bis-03 for OpenPGP
- * @requires hash.js
- * @requires tweetnacl
- * @requires crypto/public_key/elliptic/curve
- * @requires util
* @module crypto/public_key/elliptic/eddsa
+ * @private
*/
import sha512 from 'hash.js/lib/hash/sha/512';
diff --git a/src/crypto/public_key/elliptic/index.js b/src/crypto/public_key/elliptic/index.js
index 4fac26fd..2f5367fe 100644
--- a/src/crypto/public_key/elliptic/index.js
+++ b/src/crypto/public_key/elliptic/index.js
@@ -22,6 +22,7 @@
* @see module:crypto/public_key/elliptic/ecdsa
* @see module:crypto/public_key/elliptic/eddsa
* @module crypto/public_key/elliptic
+ * @private
*/
import { Curve, generate, getPreferredHashAlgo } from './curves';
diff --git a/src/crypto/public_key/elliptic/indutnyKey.js b/src/crypto/public_key/elliptic/indutnyKey.js
index c1022524..4df03b24 100644
--- a/src/crypto/public_key/elliptic/indutnyKey.js
+++ b/src/crypto/public_key/elliptic/indutnyKey.js
@@ -17,9 +17,8 @@
/**
* @fileoverview Wrapper for a KeyPair of an curve from indutny/elliptic library
- * @requires enums
- * @requires asn1.js
* @module crypto/public_key/elliptic/indutnyKey
+ * @private
*/
import config from '../../../config';
diff --git a/src/crypto/public_key/index.js b/src/crypto/public_key/index.js
index e9a81025..01973352 100644
--- a/src/crypto/public_key/index.js
+++ b/src/crypto/public_key/index.js
@@ -1,11 +1,7 @@
/**
* @fileoverview Asymmetric cryptography functions
- * @requires tweetnacl
- * @requires crypto/public_key/dsa
- * @requires crypto/public_key/elgamal
- * @requires crypto/public_key/elliptic
- * @requires crypto/public_key/rsa
* @module crypto/public_key
+ * @private
*/
import nacl from 'tweetnacl/nacl-fast-light.js';
diff --git a/src/crypto/public_key/prime.js b/src/crypto/public_key/prime.js
index d2f39a4a..fb330565 100644
--- a/src/crypto/public_key/prime.js
+++ b/src/crypto/public_key/prime.js
@@ -17,8 +17,8 @@
/**
* @fileoverview Algorithms for probabilistic random prime generation
- * @requires crypto/random
* @module crypto/public_key/prime
+ * @private
*/
import util from '../../util';
diff --git a/src/crypto/public_key/rsa.js b/src/crypto/public_key/rsa.js
index e7c10caf..5a85e8b4 100644
--- a/src/crypto/public_key/rsa.js
+++ b/src/crypto/public_key/rsa.js
@@ -17,11 +17,8 @@
/**
* @fileoverview RSA implementation
- * @requires crypto/public_key/prime
- * @requires crypto/random
- * @requires config
- * @requires util
* @module crypto/public_key/rsa
+ * @private
*/
import { randomProbablePrime } from './prime';
diff --git a/src/crypto/random.js b/src/crypto/random.js
index 56a12777..07412793 100644
--- a/src/crypto/random.js
+++ b/src/crypto/random.js
@@ -19,8 +19,8 @@
/**
* @fileoverview Provides tools for retrieving secure randomness from browsers or Node.js
- * @requires util
* @module crypto/random
+ * @private
*/
import util from '../util';
diff --git a/src/crypto/signature.js b/src/crypto/signature.js
index 39946b7b..6e3542db 100644
--- a/src/crypto/signature.js
+++ b/src/crypto/signature.js
@@ -1,10 +1,8 @@
/**
* @fileoverview Provides functions for asymmetric signing and signature verification
- * @requires crypto/public_key
- * @requires enums
- * @requires util
* @module crypto/signature
-*/
+ * @private
+ */
import publicKey from './public_key';
import enums from '../enums';
diff --git a/src/encoding/armor.js b/src/encoding/armor.js
index 60f7e0c3..16890fab 100644
--- a/src/encoding/armor.js
+++ b/src/encoding/armor.js
@@ -15,15 +15,6 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-/**
- * @requires web-stream-tools
- * @requires encoding/base64
- * @requires enums
- * @requires config
- * @requires util
- * @module encoding/armor
- */
-
import stream from 'web-stream-tools';
import * as base64 from './base64.js';
import enums from '../enums.js';
@@ -32,7 +23,6 @@ import defaultConfig from '../config';
/**
* Finds out which Ascii Armoring type is used. Throws error if unknown type.
- * @private
* @param {String} text [String] ascii armored text
* @returns {Integer} 0 = MESSAGE PART n of m
* 1 = MESSAGE PART n
@@ -41,6 +31,7 @@ import defaultConfig from '../config';
* 4 = PUBLIC KEY BLOCK
* 5 = PRIVATE KEY BLOCK
* 6 = SIGNATURE
+ * @private
*/
function getType(text) {
const reHeader = /^-----BEGIN PGP (MESSAGE, PART \d+\/\d+|MESSAGE, PART \d+|SIGNED MESSAGE|MESSAGE|PUBLIC KEY BLOCK|PRIVATE KEY BLOCK|SIGNATURE)-----$/m;
@@ -99,6 +90,7 @@ function getType(text) {
* @version 2011-12-16
* @param {String} customComment (optional) additional comment to add to the armored string
* @returns {String} The header information
+ * @private
*/
function addheader(customComment, config) {
let result = "";
@@ -120,6 +112,7 @@ function addheader(customComment, config) {
* Calculates a checksum over the given data and returns it base64 encoded
* @param {String | ReadableStream} data Data to create a CRC-24 checksum for
* @returns {String | ReadableStream} Base64 encoded checksum
+ * @private
*/
function getCheckSum(data) {
const crc = createcrc24(data);
@@ -167,6 +160,7 @@ const isLittleEndian = (function() {
* Internal function to calculate a CRC-24 checksum over a given string (data)
* @param {String | ReadableStream} data Data to create a CRC-24 checksum for
* @returns {Uint8Array | ReadableStream} The CRC-24 checksum
+ * @private
*/
function createcrc24(input) {
let crc = 0xCE04B7;
@@ -209,6 +203,7 @@ function verifyHeaders(headers) {
* @param {String} text OpenPGP armored message part
* @returns {Object} An object with attribute "body" containing the body
* and an attribute "checksum" containing the checksum.
+ * @private
*/
function splitChecksum(text) {
let body = text;
diff --git a/src/encoding/base64.js b/src/encoding/base64.js
index da56729a..2f1947c5 100644
--- a/src/encoding/base64.js
+++ b/src/encoding/base64.js
@@ -12,9 +12,8 @@
*/
/**
- * @requires web-stream-tools
- * @requires util
* @module encoding/base64
+ * @private
*/
import stream from 'web-stream-tools';
diff --git a/src/hkp.js b/src/hkp.js
index 44c2a69b..4fc4276b 100644
--- a/src/hkp.js
+++ b/src/hkp.js
@@ -15,14 +15,12 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-/**
- * @fileoverview This class implements a client for the OpenPGP HTTP Keyserver Protocol (HKP)
- * in order to lookup and upload keys on standard public key servers.
- * @module hkp
- */
-
import defaultConfig from './config';
+/**
+ * This class implements a client for the OpenPGP HTTP Keyserver Protocol (HKP)
+ * in order to lookup and upload keys on standard public key servers.
+ */
class HKP {
/**
* Initialize the HKP client and configure it with the key server url and fetch function.
diff --git a/src/index.js b/src/index.js
index ec42e062..083a3841 100644
--- a/src/index.js
+++ b/src/index.js
@@ -11,74 +11,26 @@ export {
generateSessionKey, encryptSessionKey, decryptSessionKeys
} from './openpgp';
-/**
- * @see module:key
- * @name module:openpgp.key
- */
export { Key, readKey, readKeys } from './key';
-/**
- * @see module:signature
- * @name module:openpgp.signature
- */
export { Signature, readSignature } from './signature';
-/**
- * @see module:message
- * @name module:openpgp.message
- */
export { Message, readMessage } from './message';
-/**
- * @see module:cleartext
- * @name module:openpgp.cleartext
- */
export { CleartextMessage, readCleartextMessage } from './cleartext';
-/**
- * @see module:packet
- * @name module:openpgp.packet
- */
export * from './packet';
-/**
- * @see streams
- * @name module:openpgp.stream
- */
export { default as stream } from 'web-stream-tools';
-/**
- * @see module:encoding/armor
- * @name module:openpgp.armor
- */
export * from './encoding/armor';
-/**
- * @see module:enums
- * @name module:openpgp.enums
- */
export { default as enums } from './enums';
-/**
- * @see module:config/config
- * @name module:openpgp.config
- */
export { default as config } from './config/config';
-/**
- * @see module:keyring
- * @name module:openpgp.Keyring
- */
export { default as Keyring } from './keyring';
-/**
- * @see module:hkp
- * @name module:openpgp.HKP
- */
export { default as HKP } from './hkp';
-/**
- * @see module:wkd
- * @name module:openpgp.WKD
- */
export { default as WKD } from './wkd';
diff --git a/src/key/factory.js b/src/key/factory.js
index 37af5f6b..f6372aa3 100644
--- a/src/key/factory.js
+++ b/src/key/factory.js
@@ -15,18 +15,6 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-/**
- * @fileoverview Provides factory methods for key creation
- * @requires packet
- * @requires key/Key
- * @requires key/helper
- * @requires enums
- * @requires util
- * @requires config
- * @requires armor
- * @module key/factory
- */
-
import { PacketList, UserIDPacket, SignaturePacket } from '../packet';
import Key from './key';
import * as helper from './helper';
@@ -48,9 +36,10 @@ import { unarmor } from '../encoding/armor';
* @param {Object} config Full configuration
* @param {Array