From b074293168810aff8b93fd4a19dd88d2f456d627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Wed, 19 Feb 2014 12:43:56 +0100 Subject: certifications text --- .../org/sufficientlysecure/keychain/pgp/PgpOperationOutgoing.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'OpenPGP-Keychain/src/main/java/org') diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpOperationOutgoing.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpOperationOutgoing.java index 8431aa165..52e41306f 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpOperationOutgoing.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpOperationOutgoing.java @@ -33,7 +33,6 @@ import org.spongycastle.openpgp.PGPSecretKeyRing; import org.spongycastle.openpgp.PGPSignature; import org.spongycastle.openpgp.PGPSignatureGenerator; import org.spongycastle.openpgp.PGPSignatureSubpacketGenerator; -import org.spongycastle.openpgp.PGPUtil; import org.spongycastle.openpgp.PGPV3SignatureGenerator; import org.spongycastle.openpgp.operator.PBESecretKeyDecryptor; import org.spongycastle.openpgp.operator.jcajce.JcaPGPContentSignerBuilder; @@ -308,6 +307,8 @@ public class PgpOperationOutgoing { OutputStream encryptionOut = null; BCPGOutputStream bcpgOut; if (enableEncryption) { + /* actual encryption */ + encryptionOut = cPk.open(out, new byte[1 << 16]); if (enableCompression) { @@ -410,7 +411,7 @@ public class PgpOperationOutgoing { } // closing outputs - // NOTE: closing need to be done in the correct order! + // NOTE: closing needs to be done in the correct order! // TODO: closing bcpgOut and pOut??? if (enableEncryption) { if (enableCompression) { @@ -430,6 +431,7 @@ public class PgpOperationOutgoing { } // TODO: merge this into signAndEncrypt method! + // TODO: allow binary input for this class public void generateSignature() throws PgpGeneralException, PGPException, IOException, NoSuchAlgorithmException, SignatureException { -- cgit v1.2.3