From 135bd3d46aa879ea5d8785de281f5e069841a751 Mon Sep 17 00:00:00 2001 From: Sanjana Rajan Date: Sat, 2 Dec 2017 11:48:14 -0800 Subject: [PATCH] doc update --- src/openpgp.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openpgp.js b/src/openpgp.js index 514843cc..0129598e 100644 --- a/src/openpgp.js +++ b/src/openpgp.js @@ -182,6 +182,7 @@ export function decryptKey({ privateKey, passphrase }) { * @param {Boolean} armor (optional) if the return values should be ascii armored or the message/signature objects * @param {Boolean} detached (optional) if the signature should be detached (if true, signature will be added to returned object) * @param {Signature} signature (optional) a detached signature to add to the encrypted message + * @param {Boolean} returnSessionKey (optional) if the unencrypted session key should be added to returned object * @return {Promise} encrypted (and optionally signed message) in the form: * {data: ASCII armored message if 'armor' is true, * message: full Message object if 'armor' is false, signature: detached signature if 'detached' is true}