From 4aaa1d3184c4f6901f0a1ffde398a5539d832928 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Sun, 7 Feb 2016 08:08:47 +0700 Subject: [PATCH] Update copyright notice due to complete rewrite of src/openpgp.js --- src/openpgp.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/openpgp.js b/src/openpgp.js index c52fd352..4ad1d14d 100644 --- a/src/openpgp.js +++ b/src/openpgp.js @@ -1,5 +1,5 @@ -// GPG4Browsers - An OpenPGP implementation in javascript -// Copyright (C) 2011 Recurity Labs GmbH +// OpenPGP.js - An OpenPGP implementation in javascript +// Copyright (C) 2016 Tankred Hase // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -272,7 +272,9 @@ export function encryptSessionKey({ sessionKey, algo, publicKeys, passwords }) { } return execute(() => ({ + data: messageLib.encryptSessionKey(sessionKey, algo, publicKeys, passwords).packets.write() + }), 'Error encrypting session key!'); }