fork-openpgpjs/docs/global.html
Daniel Huigens 365a5efb63 5.0.0-0
2021-02-27 01:25:52 +01:00

5382 lines
79 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Global</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Global</h1>
<section>
<header>
<h2></h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id="armor"><span class="type-signature"></span>armor<span class="signature">(messagetype, body, partindex, parttotal, customComment)</span><span class="type-signature"> &rarr; {String|ReadableStream.&lt;String>}</span></h4>
<div class="description">
<p>Armor an OpenPGP binary packet block</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>messagetype</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"><p>type of the message</p></td>
</tr>
<tr>
<td class="name"><code>body</code></td>
<td class="type">
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>partindex</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>parttotal</code></td>
<td class="type">
<span class="param-type">Integer</span>
</td>
<td class="description last"></td>
</tr>
<tr>
<td class="name"><code>customComment</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) additional comment to add to the armored string</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/encoding/armor.js">encoding/armor.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/encoding/armor.js#L357">line 357</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>Armored text</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">String</span>
|
<span class="param-type">ReadableStream.&lt;String></span>
</dd>
</dl>
<h4 class="name" id="decrypt"><span class="type-signature">(async) </span>decrypt<span class="signature">(message, privateKeys, passwords, sessionKeys, publicKeys, format, streaming, signature, date, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>Decrypts a message with the user's private key, a session key or a password. Either a private key,
a session key or a password must be specified.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>message</code></td>
<td class="type">
<span class="param-type"><a href="Message.html">Message</a></span>
</td>
<td class="description last"><p>the message object with the encrypted data</p></td>
</tr>
<tr>
<td class="name"><code>privateKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) private keys with decrypted secret key data or session key</p></td>
</tr>
<tr>
<td class="name"><code>passwords</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>(optional) passwords to decrypt the message</p></td>
</tr>
<tr>
<td class="name"><code>sessionKeys</code></td>
<td class="type">
<span class="param-type">Object</span>
|
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>(optional) session keys in the form: { data:Uint8Array, algorithm:String }</p></td>
</tr>
<tr>
<td class="name"><code>publicKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) array of public keys or single key, to verify signatures</p></td>
</tr>
<tr>
<td class="name"><code>format</code></td>
<td class="type">
<span class="param-type">'utf8'</span>
|
<span class="param-type">'binary'</span>
</td>
<td class="description last"><p>(optional) whether to return data as a string(Stream) or Uint8Array(Stream). If 'utf8' (the default), also normalize newlines.</p></td>
</tr>
<tr>
<td class="name"><code>streaming</code></td>
<td class="type">
<span class="param-type">'web'</span>
|
<span class="param-type">'ponyfill'</span>
|
<span class="param-type">'node'</span>
|
<span class="param-type">false</span>
</td>
<td class="description last"><p>(optional) whether to return data as a stream. Defaults to the type of stream <code>message</code> was created from, if any.</p></td>
</tr>
<tr>
<td class="name"><code>signature</code></td>
<td class="type">
<span class="param-type"><a href="Signature.html">Signature</a></span>
</td>
<td class="description last"><p>(optional) detached signature for verification</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) use the given date for verification instead of the current time</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L298">line 298</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>Object containing decrypted and verified message in the form:</p>
<pre><code>{
data: String|ReadableStream&lt;String&gt;|NodeStream, (if format was 'utf8', the default)
data: Uint8Array|ReadableStream&lt;Uint8Array&gt;|NodeStream, (if format was 'binary')
filename: String,
signatures: [
{
keyid: module:type/keyid~Keyid,
verified: Promise&lt;Boolean&gt;,
valid: Boolean (if streaming was false)
}, ...
]
}</code></pre>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
<h4 class="name" id="decryptKey"><span class="type-signature">(async) </span>decryptKey<span class="signature">(privateKey, passphrase, config)</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="Key.html">Key</a>>}</span></h4>
<div class="description">
<p>Unlock a private key with the given passphrase.
This method does not change the original key.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>privateKey</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
</td>
<td class="description last"><p>the private key to decrypt</p></td>
</tr>
<tr>
<td class="name"><code>passphrase</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>the user's passphrase(s)</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L163">line 163</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the unlocked key object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;<a href="Key.html">Key</a>></span>
</dd>
</dl>
<h4 class="name" id="decryptSessionKeys"><span class="type-signature">(async) </span>decryptSessionKeys<span class="signature">(message, privateKeys, passwords, config)</span><span class="type-signature"> &rarr; {Promise.&lt;(Object|undefined)>}</span></h4>
<div class="description">
<p>Decrypt symmetric session keys with a private key or password. Either a private key or
a password must be specified.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>message</code></td>
<td class="type">
<span class="param-type"><a href="Message.html">Message</a></span>
</td>
<td class="description last"><p>a message object containing the encrypted session key packets</p></td>
</tr>
<tr>
<td class="name"><code>privateKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) private keys with decrypted secret key data</p></td>
</tr>
<tr>
<td class="name"><code>passwords</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>(optional) passwords to decrypt the session key</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L487">line 487</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>Array of decrypted session key, algorithm pairs in form:
{ data:Uint8Array, algorithm:String }
or 'undefined' if no key packets found</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;(Object|undefined)></span>
</dd>
</dl>
<h4 class="name" id="encrypt"><span class="type-signature">(async) </span>encrypt<span class="signature">(message, publicKeys, privateKeys, passwords, sessionKey, armor, streaming, signature, wildcard, signingKeyIds, encryptionKeyIds, date, fromUserIds, toUserIds, config)</span><span class="type-signature"> &rarr; {Promise.&lt;(String|ReadableStream.&lt;String>|NodeStream.&lt;String>|Uint8Array|ReadableStream.&lt;Uint8Array>|NodeStream.&lt;Uint8Array>)>}</span></h4>
<div class="description">
<p>Encrypts message text/data with public keys, passwords or both at once. At least either public keys or passwords
must be specified. If private keys are specified, those will be used to sign the message.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>message</code></td>
<td class="type">
<span class="param-type"><a href="Message.html">Message</a></span>
</td>
<td class="description last"><p>message to be encrypted as created by openpgp.Message.fromText or openpgp.Message.fromBinary</p></td>
</tr>
<tr>
<td class="name"><code>publicKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) array of keys or single key, used to encrypt the message</p></td>
</tr>
<tr>
<td class="name"><code>privateKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) private keys for signing. If omitted message will not be signed</p></td>
</tr>
<tr>
<td class="name"><code>passwords</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>(optional) array of passwords or a single password to encrypt the message</p></td>
</tr>
<tr>
<td class="name"><code>sessionKey</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) session key in the form: { data:Uint8Array, algorithm:String }</p></td>
</tr>
<tr>
<td class="name"><code>armor</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) whether the return values should be ascii armored (true, the default) or binary (false)</p></td>
</tr>
<tr>
<td class="name"><code>streaming</code></td>
<td class="type">
<span class="param-type">'web'</span>
|
<span class="param-type">'ponyfill'</span>
|
<span class="param-type">'node'</span>
|
<span class="param-type">false</span>
</td>
<td class="description last"><p>(optional) whether to return data as a stream. Defaults to the type of stream <code>message</code> was created from, if any.</p></td>
</tr>
<tr>
<td class="name"><code>signature</code></td>
<td class="type">
<span class="param-type"><a href="Signature.html">Signature</a></span>
</td>
<td class="description last"><p>(optional) a detached signature to add to the encrypted message</p></td>
</tr>
<tr>
<td class="name"><code>wildcard</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) use a key ID of 0 instead of the public key IDs</p></td>
</tr>
<tr>
<td class="name"><code>signingKeyIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;<a href="module-type_keyid-Keyid.html">module:type/keyid~Keyid</a>></span>
</td>
<td class="description last"><p>(optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]</p></td>
</tr>
<tr>
<td class="name"><code>encryptionKeyIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;<a href="module-type_keyid-Keyid.html">module:type/keyid~Keyid</a>></span>
</td>
<td class="description last"><p>(optional) array of key IDs to use for encryption. Each encryptionKeyIds[i] corresponds to publicKeys[i]</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) override the creation date of the message signature</p></td>
</tr>
<tr>
<td class="name"><code>fromUserIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>(optional) array of user IDs to sign with, one per key in <code>privateKeys</code>, e.g. [{ name:'Steve Sender', email:'steve@openpgp.org' }]</p></td>
</tr>
<tr>
<td class="name"><code>toUserIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>(optional) array of user IDs to encrypt for, one per key in <code>publicKeys</code>, e.g. [{ name:'Robert Receiver', email:'robert@openpgp.org' }]</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L247">line 247</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>(String if <code>armor</code> was true, the default; Uint8Array if <code>armor</code> was false)</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;(String|ReadableStream.&lt;String>|NodeStream.&lt;String>|Uint8Array|ReadableStream.&lt;Uint8Array>|NodeStream.&lt;Uint8Array>)></span>
</dd>
</dl>
<h4 class="name" id="encryptKey"><span class="type-signature">(async) </span>encryptKey<span class="signature">(privateKey, passphrase, config)</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="Key.html">Key</a>>}</span></h4>
<div class="description">
<p>Lock a private key with the given passphrase.
This method does not change the original key.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>privateKey</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
</td>
<td class="description last"><p>the private key to encrypt</p></td>
</tr>
<tr>
<td class="name"><code>passphrase</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>if multiple passphrases, they should be in the same order as the packets each should encrypt</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L191">line 191</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>the locked key object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;<a href="Key.html">Key</a>></span>
</dd>
</dl>
<h4 class="name" id="encryptSessionKey"><span class="type-signature">(async) </span>encryptSessionKey<span class="signature">(data, algorithm, aeadAlgorithm, publicKeys, passwords, armor, wildcard, encryptionKeyIds, date, toUserIds, config)</span><span class="type-signature"> &rarr; {Promise.&lt;(String|Uint8Array)>}</span></h4>
<div class="description">
<p>Encrypt a symmetric session key with public keys, passwords, or both at once. At least either public keys
or passwords must be specified.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>data</code></td>
<td class="type">
<span class="param-type">Uint8Array</span>
</td>
<td class="description last"><p>the session key to be encrypted e.g. 16 random bytes (for aes128)</p></td>
</tr>
<tr>
<td class="name"><code>algorithm</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>algorithm of the symmetric session key e.g. 'aes128' or 'aes256'</p></td>
</tr>
<tr>
<td class="name"><code>aeadAlgorithm</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) aead algorithm, e.g. 'eax' or 'ocb'</p></td>
</tr>
<tr>
<td class="name"><code>publicKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>(optional) array of public keys or single key, used to encrypt the key</p></td>
</tr>
<tr>
<td class="name"><code>passwords</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">Array.&lt;String></span>
</td>
<td class="description last"><p>(optional) passwords for the message</p></td>
</tr>
<tr>
<td class="name"><code>armor</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) whether the return values should be ascii armored (true, the default) or binary (false)</p></td>
</tr>
<tr>
<td class="name"><code>wildcard</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) use a key ID of 0 instead of the public key IDs</p></td>
</tr>
<tr>
<td class="name"><code>encryptionKeyIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;<a href="module-type_keyid-Keyid.html">module:type/keyid~Keyid</a>></span>
</td>
<td class="description last"><p>(optional) array of key IDs to use for encryption. Each encryptionKeyIds[i] corresponds to publicKeys[i]</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) override the date</p></td>
</tr>
<tr>
<td class="name"><code>toUserIds</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"><p>(optional) array of user IDs to encrypt for, one per key in <code>publicKeys</code>, e.g. [{ name:'Phil Zimmermann', email:'phil@openpgp.org' }]</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L462">line 462</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>(String if <code>armor</code> was true, the default; Uint8Array if <code>armor</code> was false)</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;(String|Uint8Array)></span>
</dd>
</dl>
<h4 class="name" id="generateKey"><span class="type-signature">(async) </span>generateKey<span class="signature">(type, userIds, passphrase, rsaBits, curve, date, keyExpirationTime, subkeys, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>Generates a new OpenPGP key pair. Supports RSA and ECC keys. By default, primary and subkeys will be of same type.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">ecc</span>
|
<span class="param-type">rsa</span>
</td>
<td class="description last"><p>(optional) The primary key algorithm type: ECC (default) or RSA</p></td>
</tr>
<tr>
<td class="name"><code>userIds</code></td>
<td class="type">
<span class="param-type">Object</span>
|
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>User IDs as objects: { name:'Jo Doe', email:'info@jo.com' }</p></td>
</tr>
<tr>
<td class="name"><code>passphrase</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) The passphrase used to encrypt the resulting private key</p></td>
</tr>
<tr>
<td class="name"><code>rsaBits</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last"><p>(optional) Number of bits for RSA keys, defaults to 4096</p></td>
</tr>
<tr>
<td class="name"><code>curve</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) Elliptic curve for ECC keys:
curve25519 (default), p256, p384, p521, secp256k1,
brainpoolP256r1, brainpoolP384r1, or brainpoolP512r1</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) Override the creation date of the key and the key signatures</p></td>
</tr>
<tr>
<td class="name"><code>keyExpirationTime</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last"><p>(optional) Number of seconds from the key creation time after which the key expires</p></td>
</tr>
<tr>
<td class="name"><code>subkeys</code></td>
<td class="type">
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>(optional) Options for each subkey, default to main key options. e.g. [{sign: true, passphrase: '123'}]
sign parameter defaults to false, and indicates whether the subkey should sign rather than encrypt</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L59">line 59</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The generated key object in the form:
{ key:Key, privateKeyArmored:String, publicKeyArmored:String, revocationCertificate:String }</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
<h4 class="name" id="generateSessionKey"><span class="type-signature">(async) </span>generateSessionKey<span class="signature">(publicKeys, date, toUserIds, config)</span><span class="type-signature"> &rarr; {Promise.&lt;{data: Uint8Array, algorithm: String}>}</span></h4>
<div class="description">
<p>Generate a new session key object, taking the algorithm preferences of the passed public keys into account.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>publicKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>array of public keys or single key used to select algorithm preferences for</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) date to select algorithm preferences at</p></td>
</tr>
<tr>
<td class="name"><code>toUserIds</code></td>
<td class="type">
<span class="param-type">Array</span>
</td>
<td class="description last"><p>(optional) user IDs to select algorithm preferences for</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L433">line 433</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>object with session key data and algorithm</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;{data: Uint8Array, algorithm: String}></span>
</dd>
</dl>
<h4 class="name" id="readCleartextMessage"><span class="type-signature">(async) </span>readCleartextMessage<span class="signature">(cleartextMessage, config)</span><span class="type-signature"> &rarr; {<a href="CleartextMessage.html">CleartextMessage</a>}</span></h4>
<div class="description">
<p>Reads an OpenPGP cleartext signed message and returns a CleartextMessage object</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>cleartextMessage</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">ReadableStream.&lt;String></span>
</td>
<td class="description last"><p>text to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/cleartext.js">cleartext.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/cleartext.js#L164">line 164</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>new cleartext message object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type"><a href="CleartextMessage.html">CleartextMessage</a></span>
</dd>
</dl>
<h4 class="name" id="readKey"><span class="type-signature">(async) </span>readKey<span class="signature">(armoredKey, binaryKey, config)</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="Key.html">Key</a>>}</span></h4>
<div class="description">
<p>Reads an (optionally armored) OpenPGP key and returns a key object</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>armoredKey</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>armored key to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>binaryKey</code></td>
<td class="type">
<span class="param-type">Uint8Array</span>
</td>
<td class="description last"><p>binary key to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/key/factory.js">key/factory.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/key/factory.js#L254">line 254</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>key object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;<a href="Key.html">Key</a>></span>
</dd>
</dl>
<h4 class="name" id="readKeys"><span class="type-signature">(async) </span>readKeys<span class="signature">(armoredKeys, binaryKeys, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Array.&lt;<a href="Key.html">Key</a>>>}</span></h4>
<div class="description">
<p>Reads an (optionally armored) OpenPGP key block and returns a list of key objects</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>armoredKeys</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">ReadableStream.&lt;String></span>
</td>
<td class="description last"><p>armored keys to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>binaryKeys</code></td>
<td class="type">
<span class="param-type">Uint8Array</span>
|
<span class="param-type">ReadableStream.&lt;Uint8Array></span>
</td>
<td class="description last"><p>binary keys to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/key/factory.js">key/factory.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/key/factory.js#L283">line 283</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>key objects</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Array.&lt;<a href="Key.html">Key</a>>></span>
</dd>
</dl>
<h4 class="name" id="readMessage"><span class="type-signature">(async) </span>readMessage<span class="signature">(armoredMessage, binaryMessage, config)</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="Message.html">Message</a>>}</span></h4>
<div class="description">
<p>Reads an (optionally armored) OpenPGP message and returns a Message object</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>armoredMessage</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">ReadableStream.&lt;String></span>
</td>
<td class="description last"><p>armored message to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>binaryMessage</code></td>
<td class="type">
<span class="param-type">Uint8Array</span>
|
<span class="param-type">ReadableStream.&lt;Uint8Array></span>
</td>
<td class="description last"><p>binary to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/message.js">message.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/message.js#L821">line 821</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>new message object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;<a href="Message.html">Message</a>></span>
</dd>
</dl>
<h4 class="name" id="readSignature"><span class="type-signature">(async) </span>readSignature<span class="signature">(armoredSignature, binarySignature, config)</span><span class="type-signature"> &rarr; {<a href="Signature.html">Signature</a>}</span></h4>
<div class="description">
<p>reads an (optionally armored) OpenPGP signature and returns a signature object</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>armoredSignature</code></td>
<td class="type">
<span class="param-type">String</span>
|
<span class="param-type">ReadableStream.&lt;String></span>
</td>
<td class="description last"><p>armored signature to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>binarySignature</code></td>
<td class="type">
<span class="param-type">Uint8Array</span>
|
<span class="param-type">ReadableStream.&lt;Uint8Array></span>
</td>
<td class="description last"><p>binary signature to be parsed</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/signature.js">signature.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/signature.js#L61">line 61</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>new signature object</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type"><a href="Signature.html">Signature</a></span>
</dd>
</dl>
<h4 class="name" id="reformatKey"><span class="type-signature">(async) </span>reformatKey<span class="signature">(privateKey, userIds, passphrase, keyExpirationTime, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>Reformats signature packets for a key and rewraps key object.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>privateKey</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
</td>
<td class="description last"><p>Private key to reformat</p></td>
</tr>
<tr>
<td class="name"><code>userIds</code></td>
<td class="type">
<span class="param-type">Object</span>
|
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>User IDs as objects: { name:'Jo Doe', email:'info@jo.com' }</p></td>
</tr>
<tr>
<td class="name"><code>passphrase</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) The passphrase used to encrypt the resulting private key</p></td>
</tr>
<tr>
<td class="name"><code>keyExpirationTime</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last"><p>(optional) Number of seconds from the key creation time after which the key expires</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L94">line 94</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The generated key object in the form:
{ key:Key, privateKeyArmored:String, publicKeyArmored:String, revocationCertificate:String }</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
<h4 class="name" id="revokeKey"><span class="type-signature">(async) </span>revokeKey<span class="signature">(key, revocationCertificate, reasonForRevocation, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>Revokes a key. Requires either a private key or a revocation certificate.
If a revocation certificate is passed, the reasonForRevocation parameters will be ignored.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
</td>
<td class="description last"><p>(optional) public or private key to revoke</p></td>
</tr>
<tr>
<td class="name"><code>revocationCertificate</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) revocation certificate to revoke the key with</p></td>
</tr>
<tr>
<td class="name"><code>reasonForRevocation</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) object indicating the reason for revocation</p>
<h6>Properties</h6>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>flag</code></td>
<td class="type">
<span class="param-type"><a href="module-enums.html#.reasonForRevocation">module:enums.reasonForRevocation</a></span>
</td>
<td class="description last"><p>(optional) flag indicating the reason for revocation</p></td>
</tr>
<tr>
<td class="name"><code>string</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>(optional) string explaining the reason for revocation</p></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L129">line 129</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The revoked key object in the form:
{ privateKey:Key, privateKeyArmored:String, publicKey:Key, publicKeyArmored:String }
(if private key is passed) or { publicKey:Key, publicKeyArmored:String } (otherwise)</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
<h4 class="name" id="sign"><span class="type-signature">(async) </span>sign<span class="signature">(message, privateKeys, armor, streaming, detached, signingKeyIds, date, fromUserIds, config)</span><span class="type-signature"> &rarr; {Promise.&lt;(String|ReadableStream.&lt;String>|NodeStream.&lt;String>|Uint8Array|ReadableStream.&lt;Uint8Array>|NodeStream.&lt;Uint8Array>)>}</span></h4>
<div class="description">
<p>Signs a message.</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>message</code></td>
<td class="type">
<span class="param-type"><a href="CleartextMessage.html">CleartextMessage</a></span>
|
<span class="param-type"><a href="Message.html">Message</a></span>
</td>
<td class="description last"><p>(cleartext) message to be signed</p></td>
</tr>
<tr>
<td class="name"><code>privateKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>array of keys or single key with decrypted secret key data to sign cleartext</p></td>
</tr>
<tr>
<td class="name"><code>armor</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) whether the return values should be ascii armored (true, the default) or binary (false)</p></td>
</tr>
<tr>
<td class="name"><code>streaming</code></td>
<td class="type">
<span class="param-type">'web'</span>
|
<span class="param-type">'ponyfill'</span>
|
<span class="param-type">'node'</span>
|
<span class="param-type">false</span>
</td>
<td class="description last"><p>(optional) whether to return data as a stream. Defaults to the type of stream <code>message</code> was created from, if any.</p></td>
</tr>
<tr>
<td class="name"><code>detached</code></td>
<td class="type">
<span class="param-type">Boolean</span>
</td>
<td class="description last"><p>(optional) if the return value should contain a detached signature</p></td>
</tr>
<tr>
<td class="name"><code>signingKeyIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;<a href="module-type_keyid-Keyid.html">module:type/keyid~Keyid</a>></span>
</td>
<td class="description last"><p>(optional) array of key IDs to use for signing. Each signingKeyIds[i] corresponds to privateKeys[i]</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) override the creation date of the signature</p></td>
</tr>
<tr>
<td class="name"><code>fromUserIds</code></td>
<td class="type">
<span class="param-type">Array.&lt;Object></span>
</td>
<td class="description last"><p>(optional) array of user IDs to sign with, one per key in <code>privateKeys</code>, e.g. [{ name:'Steve Sender', email:'steve@openpgp.org' }]</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L341">line 341</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>(String if <code>armor</code> was true, the default; Uint8Array if <code>armor</code> was false)</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;(String|ReadableStream.&lt;String>|NodeStream.&lt;String>|Uint8Array|ReadableStream.&lt;Uint8Array>|NodeStream.&lt;Uint8Array>)></span>
</dd>
</dl>
<h4 class="name" id="unarmor"><span class="type-signature">(async) </span>unarmor<span class="signature">(text)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>DeArmor an OpenPGP armored message; verify the checksum and return
the encoded bytes</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>text</code></td>
<td class="type">
<span class="param-type">String</span>
</td>
<td class="description last"><p>OpenPGP armored message</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/encoding/armor.js">encoding/armor.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/encoding/armor.js#L231">line 231</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>An object with attribute &quot;text&quot; containing the message text,
an attribute &quot;data&quot; containing a stream of bytes and &quot;type&quot; for the ASCII armor type</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
<h4 class="name" id="verify"><span class="type-signature">(async) </span>verify<span class="signature">(publicKeys, message, format, streaming, signature, date, config)</span><span class="type-signature"> &rarr; {Promise.&lt;Object>}</span></h4>
<div class="description">
<p>Verifies signatures of cleartext signed message</p>
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>publicKeys</code></td>
<td class="type">
<span class="param-type"><a href="Key.html">Key</a></span>
|
<span class="param-type">Array.&lt;<a href="Key.html">Key</a>></span>
</td>
<td class="description last"><p>array of publicKeys or single key, to verify signatures</p></td>
</tr>
<tr>
<td class="name"><code>message</code></td>
<td class="type">
<span class="param-type"><a href="CleartextMessage.html">CleartextMessage</a></span>
|
<span class="param-type"><a href="Message.html">Message</a></span>
</td>
<td class="description last"><p>(cleartext) message object with signatures</p></td>
</tr>
<tr>
<td class="name"><code>format</code></td>
<td class="type">
<span class="param-type">'utf8'</span>
|
<span class="param-type">'binary'</span>
</td>
<td class="description last"><p>(optional) whether to return data as a string(Stream) or Uint8Array(Stream). If 'utf8' (the default), also normalize newlines.</p></td>
</tr>
<tr>
<td class="name"><code>streaming</code></td>
<td class="type">
<span class="param-type">'web'</span>
|
<span class="param-type">'ponyfill'</span>
|
<span class="param-type">'node'</span>
|
<span class="param-type">false</span>
</td>
<td class="description last"><p>(optional) whether to return data as a stream. Defaults to the type of stream <code>message</code> was created from, if any.</p></td>
</tr>
<tr>
<td class="name"><code>signature</code></td>
<td class="type">
<span class="param-type"><a href="Signature.html">Signature</a></span>
</td>
<td class="description last"><p>(optional) detached signature for verification</p></td>
</tr>
<tr>
<td class="name"><code>date</code></td>
<td class="type">
<span class="param-type">Date</span>
</td>
<td class="description last"><p>(optional) use the given date for verification instead of the current time</p></td>
</tr>
<tr>
<td class="name"><code>config</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last"><p>(optional) custom configuration settings to overwrite those in openpgp.config</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js">openpgp.js</a>, <a href="https://github.com/openpgpjs/openpgpjs/blob/v5.0.0-0/src/openpgp.js#L395">line 395</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>Object containing verified message in the form:</p>
<pre><code>{
data: String|ReadableStream&lt;String&gt;|NodeStream, (if `message` was a CleartextMessage)
data: Uint8Array|ReadableStream&lt;Uint8Array&gt;|NodeStream, (if `message` was a Message)
signatures: [
{
keyid: module:type/keyid~Keyid,
verified: Promise&lt;Boolean&gt;,
valid: Boolean (if `streaming` was false)
}, ...
]
}</code></pre>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">Promise.&lt;Object></span>
</dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Functions</h3><ul><li><a href="global.html#armor">armor</a></li><li><a href="global.html#decrypt">decrypt</a></li><li><a href="global.html#decryptKey">decryptKey</a></li><li><a href="global.html#decryptSessionKeys">decryptSessionKeys</a></li><li><a href="global.html#encrypt">encrypt</a></li><li><a href="global.html#encryptKey">encryptKey</a></li><li><a href="global.html#encryptSessionKey">encryptSessionKey</a></li><li><a href="global.html#generateKey">generateKey</a></li><li><a href="global.html#generateSessionKey">generateSessionKey</a></li><li><a href="global.html#readCleartextMessage">readCleartextMessage</a></li><li><a href="global.html#readKey">readKey</a></li><li><a href="global.html#readKeys">readKeys</a></li><li><a href="global.html#readMessage">readMessage</a></li><li><a href="global.html#readSignature">readSignature</a></li><li><a href="global.html#reformatKey">reformatKey</a></li><li><a href="global.html#revokeKey">revokeKey</a></li><li><a href="global.html#sign">sign</a></li><li><a href="global.html#unarmor">unarmor</a></li><li><a href="global.html#verify">verify</a></li></ul><h3>Modules</h3><ul><li><a href="module-config.html">config</a></li><li><a href="module-enums.html">enums</a></li></ul><h3>Classes</h3><ul><li><a href="AEADEncryptedDataPacket.html">AEADEncryptedDataPacket</a></li><li><a href="CleartextMessage.html">CleartextMessage</a></li><li><a href="CompressedDataPacket.html">CompressedDataPacket</a></li><li><a href="HKP.html">HKP</a></li><li><a href="Key.html">Key</a></li><li><a href="KeyArray.html">KeyArray</a></li><li><a href="Keyring.html">Keyring</a></li><li><a href="LiteralDataPacket.html">LiteralDataPacket</a></li><li><a href="MarkerPacket.html">MarkerPacket</a></li><li><a href="Message.html">Message</a></li><li><a href="module-crypto_random-RandomBuffer.html">RandomBuffer</a></li><li><a href="module-key_SubKey-SubKey.html">SubKey</a></li><li><a href="module-key_User-User.html">User</a></li><li><a href="module-type_kdf_params-KDFParams.html">KDFParams</a></li><li><a href="module-type_keyid-Keyid.html">Keyid</a></li><li><a href="module-type_s2k-S2K.html">S2K</a></li><li><a href="OnePassSignaturePacket.html">OnePassSignaturePacket</a></li><li><a href="PacketList.html">PacketList</a></li><li><a href="PublicKeyEncryptedSessionKeyPacket.html">PublicKeyEncryptedSessionKeyPacket</a></li><li><a href="PublicKeyPacket.html">PublicKeyPacket</a></li><li><a href="PublicSubkeyPacket.html">PublicSubkeyPacket</a></li><li><a href="SecretKeyPacket.html">SecretKeyPacket</a></li><li><a href="SecretSubkeyPacket.html">SecretSubkeyPacket</a></li><li><a href="Signature.html">Signature</a></li><li><a href="SignaturePacket.html">SignaturePacket</a></li><li><a href="SymEncryptedIntegrityProtectedDataPacket.html">SymEncryptedIntegrityProtectedDataPacket</a></li><li><a href="SymEncryptedSessionKeyPacket.html">SymEncryptedSessionKeyPacket</a></li><li><a href="SymmetricallyEncryptedDataPacket.html">SymmetricallyEncryptedDataPacket</a></li><li><a href="TrustPacket.html">TrustPacket</a></li><li><a href="UserAttributePacket.html">UserAttributePacket</a></li><li><a href="UserIDPacket.html">UserIDPacket</a></li><li><a href="WKD.html">WKD</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a> on Sat Feb 27 2021 01:25:52 GMT+0100 (Midden-Europese standaardtijd)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>