mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 20:32:05 +01:00
Allow encryption and decryption using symmetric passphrases in the main API
This commit is contained in:
parent
ce4f98423f
commit
7d374f10a7
10 changed files with 303 additions and 84 deletions
|
@ -116,7 +116,10 @@ public class PGPainless {
|
||||||
*
|
*
|
||||||
* @throws IOException IO is dangerous.
|
* @throws IOException IO is dangerous.
|
||||||
* @throws PGPException PGP is brittle.
|
* @throws PGPException PGP is brittle.
|
||||||
|
* @deprecated use {@link #encryptAndOrSign()} instead and provide a passphrase in
|
||||||
|
* {@link org.pgpainless.encryption_signing.EncryptionBuilderInterface.ToRecipients#forPassphrases(Passphrase...)}.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public static byte[] encryptWithPassword(@Nonnull byte[] data, @Nonnull Passphrase password, @Nonnull SymmetricKeyAlgorithm algorithm) throws IOException, PGPException {
|
public static byte[] encryptWithPassword(@Nonnull byte[] data, @Nonnull Passphrase password, @Nonnull SymmetricKeyAlgorithm algorithm) throws IOException, PGPException {
|
||||||
return SymmetricEncryptorDecryptor.symmetricallyEncrypt(data, password,
|
return SymmetricEncryptorDecryptor.symmetricallyEncrypt(data, password,
|
||||||
algorithm, CompressionAlgorithm.UNCOMPRESSED);
|
algorithm, CompressionAlgorithm.UNCOMPRESSED);
|
||||||
|
@ -131,7 +134,10 @@ public class PGPainless {
|
||||||
* @return decrypted data.
|
* @return decrypted data.
|
||||||
* @throws IOException IO is dangerous.
|
* @throws IOException IO is dangerous.
|
||||||
* @throws PGPException PGP is brittle.
|
* @throws PGPException PGP is brittle.
|
||||||
|
* @deprecated Use {@link #decryptAndOrVerify()} instead and provide the decryption passphrase in
|
||||||
|
* {@link org.pgpainless.decryption_verification.DecryptionBuilder.DecryptWith#decryptWith(Passphrase)}.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public static byte[] decryptWithPassword(@Nonnull byte[] data, @Nonnull Passphrase password) throws IOException, PGPException {
|
public static byte[] decryptWithPassword(@Nonnull byte[] data, @Nonnull Passphrase password) throws IOException, PGPException {
|
||||||
return SymmetricEncryptorDecryptor.symmetricallyDecrypt(data, password);
|
return SymmetricEncryptorDecryptor.symmetricallyDecrypt(data, password);
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,12 +37,14 @@ import org.bouncycastle.openpgp.operator.KeyFingerPrintCalculator;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcKeyFingerprintCalculator;
|
import org.bouncycastle.openpgp.operator.bc.BcKeyFingerprintCalculator;
|
||||||
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
||||||
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
public class DecryptionBuilder implements DecryptionBuilderInterface {
|
public class DecryptionBuilder implements DecryptionBuilderInterface {
|
||||||
|
|
||||||
private InputStream inputStream;
|
private InputStream inputStream;
|
||||||
private PGPSecretKeyRingCollection decryptionKeys;
|
private PGPSecretKeyRingCollection decryptionKeys;
|
||||||
private SecretKeyRingProtector decryptionKeyDecryptor;
|
private SecretKeyRingProtector decryptionKeyDecryptor;
|
||||||
|
private Passphrase decryptionPassphrase;
|
||||||
private List<PGPSignature> detachedSignatures;
|
private List<PGPSignature> detachedSignatures;
|
||||||
private Set<PGPPublicKeyRing> verificationKeys = new HashSet<>();
|
private Set<PGPPublicKeyRing> verificationKeys = new HashSet<>();
|
||||||
private MissingPublicKeyCallback missingPublicKeyCallback = null;
|
private MissingPublicKeyCallback missingPublicKeyCallback = null;
|
||||||
|
@ -64,6 +66,15 @@ public class DecryptionBuilder implements DecryptionBuilderInterface {
|
||||||
return new VerifyImpl();
|
return new VerifyImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Verify decryptWith(@Nonnull Passphrase passphrase) {
|
||||||
|
if (passphrase.isEmpty()) {
|
||||||
|
throw new IllegalArgumentException("Passphrase MUST NOT be empty.");
|
||||||
|
}
|
||||||
|
DecryptionBuilder.this.decryptionPassphrase = passphrase;
|
||||||
|
return new VerifyImpl();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Verify doNotDecrypt() {
|
public Verify doNotDecrypt() {
|
||||||
DecryptionBuilder.this.decryptionKeys = null;
|
DecryptionBuilder.this.decryptionKeys = null;
|
||||||
|
@ -194,7 +205,7 @@ public class DecryptionBuilder implements DecryptionBuilderInterface {
|
||||||
@Override
|
@Override
|
||||||
public DecryptionStream build() throws IOException, PGPException {
|
public DecryptionStream build() throws IOException, PGPException {
|
||||||
return DecryptionStreamFactory.create(inputStream,
|
return DecryptionStreamFactory.create(inputStream,
|
||||||
decryptionKeys, decryptionKeyDecryptor, detachedSignatures, verificationKeys, missingPublicKeyCallback);
|
decryptionKeys, decryptionKeyDecryptor, decryptionPassphrase, detachedSignatures, verificationKeys, missingPublicKeyCallback);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.bouncycastle.openpgp.PGPSignature;
|
||||||
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
||||||
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
||||||
import org.pgpainless.key.protection.UnprotectedKeysProtector;
|
import org.pgpainless.key.protection.UnprotectedKeysProtector;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
public interface DecryptionBuilderInterface {
|
public interface DecryptionBuilderInterface {
|
||||||
|
|
||||||
|
@ -67,6 +68,15 @@ public interface DecryptionBuilderInterface {
|
||||||
*/
|
*/
|
||||||
Verify decryptWith(@Nonnull SecretKeyRingProtector decryptor, @Nonnull PGPSecretKeyRingCollection secretKeyRings);
|
Verify decryptWith(@Nonnull SecretKeyRingProtector decryptor, @Nonnull PGPSecretKeyRingCollection secretKeyRings);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decrypt the encrypted data using a passphrase.
|
||||||
|
* Note: The passphrase MUST NOT be empty.
|
||||||
|
*
|
||||||
|
* @param passphrase passphrase
|
||||||
|
* @return api handle
|
||||||
|
*/
|
||||||
|
Verify decryptWith(@Nonnull Passphrase passphrase);
|
||||||
|
|
||||||
Verify doNotDecrypt();
|
Verify doNotDecrypt();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,12 +30,14 @@ import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import org.bouncycastle.openpgp.PGPCompressedData;
|
import org.bouncycastle.openpgp.PGPCompressedData;
|
||||||
|
import org.bouncycastle.openpgp.PGPEncryptedData;
|
||||||
import org.bouncycastle.openpgp.PGPEncryptedDataList;
|
import org.bouncycastle.openpgp.PGPEncryptedDataList;
|
||||||
import org.bouncycastle.openpgp.PGPException;
|
import org.bouncycastle.openpgp.PGPException;
|
||||||
import org.bouncycastle.openpgp.PGPLiteralData;
|
import org.bouncycastle.openpgp.PGPLiteralData;
|
||||||
import org.bouncycastle.openpgp.PGPObjectFactory;
|
import org.bouncycastle.openpgp.PGPObjectFactory;
|
||||||
import org.bouncycastle.openpgp.PGPOnePassSignature;
|
import org.bouncycastle.openpgp.PGPOnePassSignature;
|
||||||
import org.bouncycastle.openpgp.PGPOnePassSignatureList;
|
import org.bouncycastle.openpgp.PGPOnePassSignatureList;
|
||||||
|
import org.bouncycastle.openpgp.PGPPBEEncryptedData;
|
||||||
import org.bouncycastle.openpgp.PGPPrivateKey;
|
import org.bouncycastle.openpgp.PGPPrivateKey;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKey;
|
import org.bouncycastle.openpgp.PGPPublicKey;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKeyEncryptedData;
|
import org.bouncycastle.openpgp.PGPPublicKeyEncryptedData;
|
||||||
|
@ -45,15 +47,19 @@ import org.bouncycastle.openpgp.PGPSecretKeyRingCollection;
|
||||||
import org.bouncycastle.openpgp.PGPSignature;
|
import org.bouncycastle.openpgp.PGPSignature;
|
||||||
import org.bouncycastle.openpgp.PGPUtil;
|
import org.bouncycastle.openpgp.PGPUtil;
|
||||||
import org.bouncycastle.openpgp.operator.KeyFingerPrintCalculator;
|
import org.bouncycastle.openpgp.operator.KeyFingerPrintCalculator;
|
||||||
|
import org.bouncycastle.openpgp.operator.PBEDataDecryptorFactory;
|
||||||
import org.bouncycastle.openpgp.operator.PGPContentVerifierBuilderProvider;
|
import org.bouncycastle.openpgp.operator.PGPContentVerifierBuilderProvider;
|
||||||
import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory;
|
import org.bouncycastle.openpgp.operator.PublicKeyDataDecryptorFactory;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcKeyFingerprintCalculator;
|
import org.bouncycastle.openpgp.operator.bc.BcKeyFingerprintCalculator;
|
||||||
|
import org.bouncycastle.openpgp.operator.bc.BcPBEDataDecryptorFactory;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcPGPContentVerifierBuilderProvider;
|
import org.bouncycastle.openpgp.operator.bc.BcPGPContentVerifierBuilderProvider;
|
||||||
|
import org.bouncycastle.openpgp.operator.bc.BcPGPDigestCalculatorProvider;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcPublicKeyDataDecryptorFactory;
|
import org.bouncycastle.openpgp.operator.bc.BcPublicKeyDataDecryptorFactory;
|
||||||
import org.pgpainless.algorithm.CompressionAlgorithm;
|
import org.pgpainless.algorithm.CompressionAlgorithm;
|
||||||
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
||||||
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
||||||
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
public final class DecryptionStreamFactory {
|
public final class DecryptionStreamFactory {
|
||||||
|
|
||||||
|
@ -62,6 +68,7 @@ public final class DecryptionStreamFactory {
|
||||||
|
|
||||||
private final PGPSecretKeyRingCollection decryptionKeys;
|
private final PGPSecretKeyRingCollection decryptionKeys;
|
||||||
private final SecretKeyRingProtector decryptionKeyDecryptor;
|
private final SecretKeyRingProtector decryptionKeyDecryptor;
|
||||||
|
private final Passphrase decryptionPassphrase;
|
||||||
private final Set<PGPPublicKeyRing> verificationKeys = new HashSet<>();
|
private final Set<PGPPublicKeyRing> verificationKeys = new HashSet<>();
|
||||||
private final MissingPublicKeyCallback missingPublicKeyCallback;
|
private final MissingPublicKeyCallback missingPublicKeyCallback;
|
||||||
|
|
||||||
|
@ -72,10 +79,12 @@ public final class DecryptionStreamFactory {
|
||||||
|
|
||||||
private DecryptionStreamFactory(@Nullable PGPSecretKeyRingCollection decryptionKeys,
|
private DecryptionStreamFactory(@Nullable PGPSecretKeyRingCollection decryptionKeys,
|
||||||
@Nullable SecretKeyRingProtector decryptor,
|
@Nullable SecretKeyRingProtector decryptor,
|
||||||
|
@Nullable Passphrase decryptionPassphrase,
|
||||||
@Nullable Set<PGPPublicKeyRing> verificationKeys,
|
@Nullable Set<PGPPublicKeyRing> verificationKeys,
|
||||||
@Nullable MissingPublicKeyCallback missingPublicKeyCallback) {
|
@Nullable MissingPublicKeyCallback missingPublicKeyCallback) {
|
||||||
this.decryptionKeys = decryptionKeys;
|
this.decryptionKeys = decryptionKeys;
|
||||||
this.decryptionKeyDecryptor = decryptor;
|
this.decryptionKeyDecryptor = decryptor;
|
||||||
|
this.decryptionPassphrase = decryptionPassphrase;
|
||||||
this.verificationKeys.addAll(verificationKeys != null ? verificationKeys : Collections.emptyList());
|
this.verificationKeys.addAll(verificationKeys != null ? verificationKeys : Collections.emptyList());
|
||||||
this.missingPublicKeyCallback = missingPublicKeyCallback;
|
this.missingPublicKeyCallback = missingPublicKeyCallback;
|
||||||
}
|
}
|
||||||
|
@ -83,13 +92,14 @@ public final class DecryptionStreamFactory {
|
||||||
public static DecryptionStream create(@Nonnull InputStream inputStream,
|
public static DecryptionStream create(@Nonnull InputStream inputStream,
|
||||||
@Nullable PGPSecretKeyRingCollection decryptionKeys,
|
@Nullable PGPSecretKeyRingCollection decryptionKeys,
|
||||||
@Nullable SecretKeyRingProtector decryptor,
|
@Nullable SecretKeyRingProtector decryptor,
|
||||||
|
@Nullable Passphrase decryptionPassphrase,
|
||||||
@Nullable List<PGPSignature> detachedSignatures,
|
@Nullable List<PGPSignature> detachedSignatures,
|
||||||
@Nullable Set<PGPPublicKeyRing> verificationKeys,
|
@Nullable Set<PGPPublicKeyRing> verificationKeys,
|
||||||
@Nullable MissingPublicKeyCallback missingPublicKeyCallback)
|
@Nullable MissingPublicKeyCallback missingPublicKeyCallback)
|
||||||
throws IOException, PGPException {
|
throws IOException, PGPException {
|
||||||
InputStream pgpInputStream;
|
InputStream pgpInputStream;
|
||||||
DecryptionStreamFactory factory = new DecryptionStreamFactory(decryptionKeys, decryptor, verificationKeys,
|
DecryptionStreamFactory factory = new DecryptionStreamFactory(decryptionKeys, decryptor,
|
||||||
missingPublicKeyCallback);
|
decryptionPassphrase, verificationKeys, missingPublicKeyCallback);
|
||||||
|
|
||||||
if (detachedSignatures != null) {
|
if (detachedSignatures != null) {
|
||||||
pgpInputStream = inputStream;
|
pgpInputStream = inputStream;
|
||||||
|
@ -171,7 +181,7 @@ public final class DecryptionStreamFactory {
|
||||||
|
|
||||||
private InputStream decrypt(@Nonnull PGPEncryptedDataList encryptedDataList)
|
private InputStream decrypt(@Nonnull PGPEncryptedDataList encryptedDataList)
|
||||||
throws PGPException {
|
throws PGPException {
|
||||||
Iterator<?> encryptedDataIterator = encryptedDataList.getEncryptedDataObjects();
|
Iterator<PGPEncryptedData> encryptedDataIterator = encryptedDataList.getEncryptedDataObjects();
|
||||||
if (!encryptedDataIterator.hasNext()) {
|
if (!encryptedDataIterator.hasNext()) {
|
||||||
throw new PGPException("Decryption failed - EncryptedDataList has no items");
|
throw new PGPException("Decryption failed - EncryptedDataList has no items");
|
||||||
}
|
}
|
||||||
|
@ -179,19 +189,38 @@ public final class DecryptionStreamFactory {
|
||||||
PGPPrivateKey decryptionKey = null;
|
PGPPrivateKey decryptionKey = null;
|
||||||
PGPPublicKeyEncryptedData encryptedSessionKey = null;
|
PGPPublicKeyEncryptedData encryptedSessionKey = null;
|
||||||
while (encryptedDataIterator.hasNext()) {
|
while (encryptedDataIterator.hasNext()) {
|
||||||
PGPPublicKeyEncryptedData encryptedData = (PGPPublicKeyEncryptedData) encryptedDataIterator.next();
|
PGPEncryptedData encryptedData = encryptedDataIterator.next();
|
||||||
long keyId = encryptedData.getKeyID();
|
|
||||||
|
|
||||||
resultBuilder.addRecipientKeyId(keyId);
|
if (encryptedData instanceof PGPPBEEncryptedData) {
|
||||||
LOGGER.log(LEVEL, "PGPEncryptedData is encrypted for key " + Long.toHexString(keyId));
|
|
||||||
|
|
||||||
PGPSecretKey secretKey = decryptionKeys.getSecretKey(keyId);
|
PGPPBEEncryptedData pbeEncryptedData = (PGPPBEEncryptedData) encryptedData;
|
||||||
if (secretKey != null) {
|
if (decryptionPassphrase != null) {
|
||||||
LOGGER.log(LEVEL, "Found respective secret key " + Long.toHexString(keyId));
|
PBEDataDecryptorFactory passphraseDecryptor = new BcPBEDataDecryptorFactory(
|
||||||
// Watch out! This assignment is possibly done multiple times.
|
decryptionPassphrase.getChars(), new BcPGPDigestCalculatorProvider());
|
||||||
encryptedSessionKey = encryptedData;
|
SymmetricKeyAlgorithm symmetricKeyAlgorithm = SymmetricKeyAlgorithm.fromId(
|
||||||
decryptionKey = secretKey.extractPrivateKey(decryptionKeyDecryptor.getDecryptor(keyId));
|
pbeEncryptedData.getSymmetricAlgorithm(passphraseDecryptor));
|
||||||
resultBuilder.setDecryptionFingerprint(new OpenPgpV4Fingerprint(secretKey));
|
resultBuilder.setSymmetricKeyAlgorithm(symmetricKeyAlgorithm);
|
||||||
|
resultBuilder.setIntegrityProtected(pbeEncryptedData.isIntegrityProtected());
|
||||||
|
return pbeEncryptedData.getDataStream(passphraseDecryptor);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (encryptedData instanceof PGPPublicKeyEncryptedData) {
|
||||||
|
PGPPublicKeyEncryptedData publicKeyEncryptedData = (PGPPublicKeyEncryptedData) encryptedData;
|
||||||
|
long keyId = publicKeyEncryptedData.getKeyID();
|
||||||
|
|
||||||
|
resultBuilder.addRecipientKeyId(keyId);
|
||||||
|
LOGGER.log(LEVEL, "PGPEncryptedData is encrypted for key " + Long.toHexString(keyId));
|
||||||
|
|
||||||
|
if (decryptionKeys != null) {
|
||||||
|
PGPSecretKey secretKey = decryptionKeys.getSecretKey(keyId);
|
||||||
|
if (secretKey != null) {
|
||||||
|
LOGGER.log(LEVEL, "Found respective secret key " + Long.toHexString(keyId));
|
||||||
|
// Watch out! This assignment is possibly done multiple times.
|
||||||
|
encryptedSessionKey = publicKeyEncryptedData;
|
||||||
|
decryptionKey = secretKey.extractPrivateKey(decryptionKeyDecryptor.getDecryptor(keyId));
|
||||||
|
resultBuilder.setDecryptionFingerprint(new OpenPgpV4Fingerprint(secretKey));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -200,6 +229,7 @@ public final class DecryptionStreamFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
PublicKeyDataDecryptorFactory keyDecryptor = new BcPublicKeyDataDecryptorFactory(decryptionKey);
|
PublicKeyDataDecryptorFactory keyDecryptor = new BcPublicKeyDataDecryptorFactory(decryptionKey);
|
||||||
|
|
||||||
SymmetricKeyAlgorithm symmetricKeyAlgorithm = SymmetricKeyAlgorithm
|
SymmetricKeyAlgorithm symmetricKeyAlgorithm = SymmetricKeyAlgorithm
|
||||||
.fromId(encryptedSessionKey.getSymmetricAlgorithm(keyDecryptor));
|
.fromId(encryptedSessionKey.getSymmetricAlgorithm(keyDecryptor));
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,10 @@ package org.pgpainless.encryption_signing;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
@ -49,11 +51,13 @@ import org.pgpainless.key.selection.key.util.And;
|
||||||
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
|
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
|
||||||
import org.pgpainless.key.selection.keyring.SecretKeyRingSelectionStrategy;
|
import org.pgpainless.key.selection.keyring.SecretKeyRingSelectionStrategy;
|
||||||
import org.pgpainless.util.MultiMap;
|
import org.pgpainless.util.MultiMap;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
public class EncryptionBuilder implements EncryptionBuilderInterface {
|
public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
|
|
||||||
private OutputStream outputStream;
|
private OutputStream outputStream;
|
||||||
private final Set<PGPPublicKey> encryptionKeys = new HashSet<>();
|
private final Set<PGPPublicKey> encryptionKeys = new HashSet<>();
|
||||||
|
private final Set<Passphrase> encryptionPassphrases = new HashSet<>();
|
||||||
private boolean detachedSignature = false;
|
private boolean detachedSignature = false;
|
||||||
private SignatureType signatureType = SignatureType.BINARY_DOCUMENT;
|
private SignatureType signatureType = SignatureType.BINARY_DOCUMENT;
|
||||||
private final Set<PGPSecretKey> signingKeys = new HashSet<>();
|
private final Set<PGPSecretKey> signingKeys = new HashSet<>();
|
||||||
|
@ -73,16 +77,20 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WithAlgorithms toRecipients(@Nonnull PGPPublicKey... keys) {
|
public WithAlgorithms toRecipients(@Nonnull PGPPublicKey... keys) {
|
||||||
for (PGPPublicKey k : keys) {
|
if (keys.length != 0) {
|
||||||
if (encryptionKeySelector().accept(null, k)) {
|
List<PGPPublicKey> encryptionKeys = new ArrayList<>();
|
||||||
EncryptionBuilder.this.encryptionKeys.add(k);
|
for (PGPPublicKey k : keys) {
|
||||||
} else {
|
if (encryptionKeySelector().accept(null, k)) {
|
||||||
throw new IllegalArgumentException("Key " + k.getKeyID() + " is not a valid encryption key.");
|
encryptionKeys.add(k);
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException("Key " + k.getKeyID() + " is not a valid encryption key.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (EncryptionBuilder.this.encryptionKeys.isEmpty()) {
|
if (encryptionKeys.isEmpty()) {
|
||||||
throw new IllegalStateException("No valid encryption keys found!");
|
throw new IllegalStateException("No valid encryption keys found!");
|
||||||
|
}
|
||||||
|
EncryptionBuilder.this.encryptionKeys.addAll(encryptionKeys);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WithAlgorithmsImpl();
|
return new WithAlgorithmsImpl();
|
||||||
|
@ -90,16 +98,19 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WithAlgorithms toRecipients(@Nonnull PGPPublicKeyRing... keys) {
|
public WithAlgorithms toRecipients(@Nonnull PGPPublicKeyRing... keys) {
|
||||||
for (PGPPublicKeyRing ring : keys) {
|
if (keys.length != 0) {
|
||||||
for (PGPPublicKey k : ring) {
|
List<PGPPublicKey> encryptionKeys = new ArrayList<>();
|
||||||
if (encryptionKeySelector().accept(null, k)) {
|
for (PGPPublicKeyRing ring : keys) {
|
||||||
EncryptionBuilder.this.encryptionKeys.add(k);
|
for (PGPPublicKey k : ring) {
|
||||||
|
if (encryptionKeySelector().accept(null, k)) {
|
||||||
|
encryptionKeys.add(k);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
if (encryptionKeys.isEmpty()) {
|
||||||
|
throw new IllegalStateException("No valid encryption keys found!");
|
||||||
if (EncryptionBuilder.this.encryptionKeys.isEmpty()) {
|
}
|
||||||
throw new IllegalStateException("No valid encryption keys found!");
|
EncryptionBuilder.this.encryptionKeys.addAll(encryptionKeys);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WithAlgorithmsImpl();
|
return new WithAlgorithmsImpl();
|
||||||
|
@ -107,18 +118,23 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WithAlgorithms toRecipients(@Nonnull PGPPublicKeyRingCollection... keys) {
|
public WithAlgorithms toRecipients(@Nonnull PGPPublicKeyRingCollection... keys) {
|
||||||
for (PGPPublicKeyRingCollection collection : keys) {
|
if (keys.length != 0) {
|
||||||
for (PGPPublicKeyRing ring : collection) {
|
List<PGPPublicKey> encryptionKeys = new ArrayList<>();
|
||||||
for (PGPPublicKey k : ring) {
|
for (PGPPublicKeyRingCollection collection : keys) {
|
||||||
if (encryptionKeySelector().accept(null, k)) {
|
for (PGPPublicKeyRing ring : collection) {
|
||||||
EncryptionBuilder.this.encryptionKeys.add(k);
|
for (PGPPublicKey k : ring) {
|
||||||
|
if (encryptionKeySelector().accept(null, k)) {
|
||||||
|
encryptionKeys.add(k);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (EncryptionBuilder.this.encryptionKeys.isEmpty()) {
|
if (encryptionKeys.isEmpty()) {
|
||||||
throw new IllegalStateException("No valid encryption keys found!");
|
throw new IllegalStateException("No valid encryption keys found!");
|
||||||
|
}
|
||||||
|
|
||||||
|
EncryptionBuilder.this.encryptionKeys.addAll(encryptionKeys);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WithAlgorithmsImpl();
|
return new WithAlgorithmsImpl();
|
||||||
|
@ -149,6 +165,19 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
return new WithAlgorithmsImpl();
|
return new WithAlgorithmsImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public WithAlgorithms forPassphrases(Passphrase... passphrases) {
|
||||||
|
List<Passphrase> passphraseList = new ArrayList<>();
|
||||||
|
for (Passphrase passphrase : passphrases) {
|
||||||
|
if (passphrase.isEmpty()) {
|
||||||
|
throw new IllegalArgumentException("Passphrase must not be empty.");
|
||||||
|
}
|
||||||
|
passphraseList.add(passphrase);
|
||||||
|
}
|
||||||
|
EncryptionBuilder.this.encryptionPassphrases.addAll(passphraseList);
|
||||||
|
return new WithAlgorithmsImpl();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DetachedSign doNotEncrypt() {
|
public DetachedSign doNotEncrypt() {
|
||||||
return new DetachedSignImpl();
|
return new DetachedSignImpl();
|
||||||
|
@ -243,6 +272,11 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
|
|
||||||
return new DetachedSignImpl();
|
return new DetachedSignImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ToRecipients and() {
|
||||||
|
return new ToRecipientsImpl();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class DetachedSignImpl implements DetachedSign {
|
class DetachedSignImpl implements DetachedSign {
|
||||||
|
@ -379,6 +413,7 @@ public class EncryptionBuilder implements EncryptionBuilderInterface {
|
||||||
return new EncryptionStream(
|
return new EncryptionStream(
|
||||||
EncryptionBuilder.this.outputStream,
|
EncryptionBuilder.this.outputStream,
|
||||||
EncryptionBuilder.this.encryptionKeys,
|
EncryptionBuilder.this.encryptionKeys,
|
||||||
|
EncryptionBuilder.this.encryptionPassphrases,
|
||||||
EncryptionBuilder.this.detachedSignature,
|
EncryptionBuilder.this.detachedSignature,
|
||||||
signatureType,
|
signatureType,
|
||||||
privateKeys,
|
privateKeys,
|
||||||
|
|
|
@ -36,6 +36,7 @@ import org.pgpainless.key.protection.UnprotectedKeysProtector;
|
||||||
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
|
import org.pgpainless.key.selection.keyring.PublicKeyRingSelectionStrategy;
|
||||||
import org.pgpainless.key.selection.keyring.SecretKeyRingSelectionStrategy;
|
import org.pgpainless.key.selection.keyring.SecretKeyRingSelectionStrategy;
|
||||||
import org.pgpainless.util.MultiMap;
|
import org.pgpainless.util.MultiMap;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
public interface EncryptionBuilderInterface {
|
public interface EncryptionBuilderInterface {
|
||||||
|
|
||||||
|
@ -85,6 +86,15 @@ public interface EncryptionBuilderInterface {
|
||||||
<O> WithAlgorithms toRecipients(@Nonnull PublicKeyRingSelectionStrategy<O> selectionStrategy,
|
<O> WithAlgorithms toRecipients(@Nonnull PublicKeyRingSelectionStrategy<O> selectionStrategy,
|
||||||
@Nonnull MultiMap<O, PGPPublicKeyRingCollection> keys);
|
@Nonnull MultiMap<O, PGPPublicKeyRingCollection> keys);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encrypt to one or more symmetric passphrases.
|
||||||
|
* Note that the passphrases MUST NOT be empty.
|
||||||
|
*
|
||||||
|
* @param passphrases passphrase
|
||||||
|
* @return api handle
|
||||||
|
*/
|
||||||
|
WithAlgorithms forPassphrases(Passphrase... passphrases);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Instruct the {@link EncryptionStream} to not encrypt any data.
|
* Instruct the {@link EncryptionStream} to not encrypt any data.
|
||||||
*
|
*
|
||||||
|
@ -150,6 +160,8 @@ public interface EncryptionBuilderInterface {
|
||||||
*/
|
*/
|
||||||
DetachedSign usingSecureAlgorithms();
|
DetachedSign usingSecureAlgorithms();
|
||||||
|
|
||||||
|
ToRecipients and();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DetachedSign extends SignWith {
|
interface DetachedSign extends SignWith {
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.bouncycastle.openpgp.PGPPrivateKey;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKey;
|
import org.bouncycastle.openpgp.PGPPublicKey;
|
||||||
import org.bouncycastle.openpgp.PGPSignature;
|
import org.bouncycastle.openpgp.PGPSignature;
|
||||||
import org.bouncycastle.openpgp.PGPSignatureGenerator;
|
import org.bouncycastle.openpgp.PGPSignatureGenerator;
|
||||||
|
import org.bouncycastle.openpgp.operator.bc.BcPBEKeyEncryptionMethodGenerator;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcPGPContentSignerBuilder;
|
import org.bouncycastle.openpgp.operator.bc.BcPGPContentSignerBuilder;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcPGPDataEncryptorBuilder;
|
import org.bouncycastle.openpgp.operator.bc.BcPGPDataEncryptorBuilder;
|
||||||
import org.bouncycastle.openpgp.operator.bc.BcPublicKeyKeyEncryptionMethodGenerator;
|
import org.bouncycastle.openpgp.operator.bc.BcPublicKeyKeyEncryptionMethodGenerator;
|
||||||
|
@ -47,6 +48,7 @@ import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
||||||
import org.pgpainless.decryption_verification.DetachedSignature;
|
import org.pgpainless.decryption_verification.DetachedSignature;
|
||||||
import org.pgpainless.decryption_verification.OpenPgpMetadata;
|
import org.pgpainless.decryption_verification.OpenPgpMetadata;
|
||||||
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
import org.pgpainless.key.OpenPgpV4Fingerprint;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class is based upon Jens Neuhalfen's Bouncy-GPG PGPEncryptingStream.
|
* This class is based upon Jens Neuhalfen's Bouncy-GPG PGPEncryptingStream.
|
||||||
|
@ -63,6 +65,7 @@ public final class EncryptionStream extends OutputStream {
|
||||||
private final HashAlgorithm hashAlgorithm;
|
private final HashAlgorithm hashAlgorithm;
|
||||||
private final CompressionAlgorithm compressionAlgorithm;
|
private final CompressionAlgorithm compressionAlgorithm;
|
||||||
private final Set<PGPPublicKey> encryptionKeys;
|
private final Set<PGPPublicKey> encryptionKeys;
|
||||||
|
private final Set<Passphrase> encryptionPassphrases;
|
||||||
private final boolean detachedSignature;
|
private final boolean detachedSignature;
|
||||||
private final SignatureType signatureType;
|
private final SignatureType signatureType;
|
||||||
private final Map<OpenPgpV4Fingerprint, PGPPrivateKey> signingKeys;
|
private final Map<OpenPgpV4Fingerprint, PGPPrivateKey> signingKeys;
|
||||||
|
@ -86,6 +89,7 @@ public final class EncryptionStream extends OutputStream {
|
||||||
|
|
||||||
EncryptionStream(@Nonnull OutputStream targetOutputStream,
|
EncryptionStream(@Nonnull OutputStream targetOutputStream,
|
||||||
@Nonnull Set<PGPPublicKey> encryptionKeys,
|
@Nonnull Set<PGPPublicKey> encryptionKeys,
|
||||||
|
@Nonnull Set<Passphrase> encryptionPassphrases,
|
||||||
boolean detachedSignature,
|
boolean detachedSignature,
|
||||||
SignatureType signatureType,
|
SignatureType signatureType,
|
||||||
@Nonnull Map<OpenPgpV4Fingerprint, PGPPrivateKey> signingKeys,
|
@Nonnull Map<OpenPgpV4Fingerprint, PGPPrivateKey> signingKeys,
|
||||||
|
@ -99,6 +103,7 @@ public final class EncryptionStream extends OutputStream {
|
||||||
this.hashAlgorithm = hashAlgorithm;
|
this.hashAlgorithm = hashAlgorithm;
|
||||||
this.compressionAlgorithm = compressionAlgorithm;
|
this.compressionAlgorithm = compressionAlgorithm;
|
||||||
this.encryptionKeys = Collections.unmodifiableSet(encryptionKeys);
|
this.encryptionKeys = Collections.unmodifiableSet(encryptionKeys);
|
||||||
|
this.encryptionPassphrases = Collections.unmodifiableSet(encryptionPassphrases);
|
||||||
this.detachedSignature = detachedSignature;
|
this.detachedSignature = detachedSignature;
|
||||||
this.signatureType = signatureType;
|
this.signatureType = signatureType;
|
||||||
this.signingKeys = Collections.unmodifiableMap(signingKeys);
|
this.signingKeys = Collections.unmodifiableMap(signingKeys);
|
||||||
|
@ -126,7 +131,7 @@ public final class EncryptionStream extends OutputStream {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void prepareEncryption() throws IOException, PGPException {
|
private void prepareEncryption() throws IOException, PGPException {
|
||||||
if (encryptionKeys.isEmpty()) {
|
if (encryptionKeys.isEmpty() && encryptionPassphrases.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,6 +148,10 @@ public final class EncryptionStream extends OutputStream {
|
||||||
encryptedDataGenerator.addMethod(new BcPublicKeyKeyEncryptionMethodGenerator(key));
|
encryptedDataGenerator.addMethod(new BcPublicKeyKeyEncryptionMethodGenerator(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (Passphrase passphrase : encryptionPassphrases) {
|
||||||
|
encryptedDataGenerator.addMethod(new BcPBEKeyEncryptionMethodGenerator(passphrase.getChars()));
|
||||||
|
}
|
||||||
|
|
||||||
publicKeyEncryptedStream = encryptedDataGenerator.open(outermostStream, new byte[BUFFER_SIZE]);
|
publicKeyEncryptedStream = encryptedDataGenerator.open(outermostStream, new byte[BUFFER_SIZE]);
|
||||||
outermostStream = publicKeyEncryptedStream;
|
outermostStream = publicKeyEncryptedStream;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Paul Schaub.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.pgpainless.symmetric_encryption;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import org.bouncycastle.bcpg.ArmoredOutputStream;
|
||||||
|
import org.bouncycastle.openpgp.PGPException;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.pgpainless.PGPainless;
|
||||||
|
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
||||||
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
|
public class LegacySymmetricEncryptionTest {
|
||||||
|
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(LegacySymmetricEncryptionTest.class.getName());
|
||||||
|
|
||||||
|
private static final String message =
|
||||||
|
"I grew up with the understanding that the world " +
|
||||||
|
"I lived in was one where people enjoyed a sort of freedom " +
|
||||||
|
"to communicate with each other in privacy, without it " +
|
||||||
|
"being monitored, without it being measured or analyzed " +
|
||||||
|
"or sort of judged by these shadowy figures or systems, " +
|
||||||
|
"any time they mention anything that travels across " +
|
||||||
|
"public lines.\n" +
|
||||||
|
"\n" +
|
||||||
|
"- Edward Snowden -";
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
|
@Test
|
||||||
|
public void testSymmetricEncryptionDecryption() throws IOException, PGPException {
|
||||||
|
byte[] plain = message.getBytes();
|
||||||
|
String password = "choose_a_better_password_please";
|
||||||
|
Passphrase passphrase = new Passphrase(password.toCharArray());
|
||||||
|
byte[] enc = PGPainless.encryptWithPassword(plain, passphrase, SymmetricKeyAlgorithm.AES_128);
|
||||||
|
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||||
|
ArmoredOutputStream armor = new ArmoredOutputStream(out);
|
||||||
|
armor.write(enc);
|
||||||
|
armor.flush();
|
||||||
|
armor.close();
|
||||||
|
|
||||||
|
// Print cipher text for validation with GnuPG.
|
||||||
|
LOGGER.log(Level.INFO, String.format("Use ciphertext below for manual validation with GnuPG " +
|
||||||
|
"(passphrase = '%s').\n\n%s", password, new String(out.toByteArray())));
|
||||||
|
|
||||||
|
byte[] plain2 = PGPainless.decryptWithPassword(enc, passphrase);
|
||||||
|
assertArrayEquals(plain, plain2);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2018 Paul Schaub.
|
* Copyright 2020 Paul Schaub.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -17,50 +17,82 @@ package org.pgpainless.symmetric_encryption;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
||||||
|
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.logging.Level;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
import org.bouncycastle.bcpg.ArmoredOutputStream;
|
|
||||||
import org.bouncycastle.openpgp.PGPException;
|
import org.bouncycastle.openpgp.PGPException;
|
||||||
|
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
||||||
|
import org.bouncycastle.openpgp.PGPSecretKeyRingCollection;
|
||||||
|
import org.bouncycastle.util.io.Streams;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.pgpainless.PGPainless;
|
import org.pgpainless.PGPainless;
|
||||||
import org.pgpainless.algorithm.SymmetricKeyAlgorithm;
|
import org.pgpainless.decryption_verification.DecryptionStream;
|
||||||
|
import org.pgpainless.encryption_signing.EncryptionStream;
|
||||||
|
import org.pgpainless.key.TestKeys;
|
||||||
|
import org.pgpainless.key.protection.KeyRingProtectionSettings;
|
||||||
|
import org.pgpainless.key.protection.PasswordBasedSecretKeyRingProtector;
|
||||||
|
import org.pgpainless.key.protection.SecretKeyRingProtector;
|
||||||
|
import org.pgpainless.key.protection.passphrase_provider.SolitaryPassphraseProvider;
|
||||||
import org.pgpainless.util.Passphrase;
|
import org.pgpainless.util.Passphrase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test parallel symmetric and public key encryption/decryption.
|
||||||
|
*/
|
||||||
public class SymmetricEncryptionTest {
|
public class SymmetricEncryptionTest {
|
||||||
|
|
||||||
private static final Logger LOGGER = Logger.getLogger(SymmetricEncryptionTest.class.getName());
|
|
||||||
|
|
||||||
private static final String message =
|
|
||||||
"I grew up with the understanding that the world " +
|
|
||||||
"I lived in was one where people enjoyed a sort of freedom " +
|
|
||||||
"to communicate with each other in privacy, without it " +
|
|
||||||
"being monitored, without it being measured or analyzed " +
|
|
||||||
"or sort of judged by these shadowy figures or systems, " +
|
|
||||||
"any time they mention anything that travels across " +
|
|
||||||
"public lines.\n" +
|
|
||||||
"\n" +
|
|
||||||
"- Edward Snowden -";
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSymmetricEncryptionDecryption() throws IOException, PGPException {
|
public void test() throws IOException, PGPException {
|
||||||
byte[] plain = message.getBytes();
|
byte[] plaintext = "This is a secret message".getBytes(StandardCharsets.UTF_8);
|
||||||
String password = "choose_a_better_password_please";
|
ByteArrayInputStream plaintextIn = new ByteArrayInputStream(plaintext);
|
||||||
Passphrase passphrase = new Passphrase(password.toCharArray());
|
PGPPublicKeyRing encryptionKey = TestKeys.getCryptiePublicKeyRing();
|
||||||
byte[] enc = PGPainless.encryptWithPassword(plain, passphrase, SymmetricKeyAlgorithm.AES_128);
|
Passphrase encryptionPassphrase = Passphrase.fromPassword("greenBeans");
|
||||||
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
|
||||||
ArmoredOutputStream armor = new ArmoredOutputStream(out);
|
|
||||||
armor.write(enc);
|
|
||||||
armor.flush();
|
|
||||||
armor.close();
|
|
||||||
|
|
||||||
// Print cipher text for validation with GnuPG.
|
ByteArrayOutputStream ciphertextOut = new ByteArrayOutputStream();
|
||||||
LOGGER.log(Level.INFO, String.format("Use ciphertext below for manual validation with GnuPG " +
|
EncryptionStream encryptor = PGPainless.encryptAndOrSign().onOutputStream(ciphertextOut)
|
||||||
"(passphrase = '%s').\n\n%s", password, new String(out.toByteArray())));
|
.forPassphrases(encryptionPassphrase)
|
||||||
|
.and()
|
||||||
|
.toRecipients(encryptionKey)
|
||||||
|
.usingSecureAlgorithms()
|
||||||
|
.doNotSign()
|
||||||
|
.noArmor();
|
||||||
|
|
||||||
byte[] plain2 = PGPainless.decryptWithPassword(enc, passphrase);
|
Streams.pipeAll(plaintextIn, encryptor);
|
||||||
assertArrayEquals(plain, plain2);
|
encryptor.close();
|
||||||
|
|
||||||
|
byte[] ciphertext = ciphertextOut.toByteArray();
|
||||||
|
|
||||||
|
// Test symmetric decryption
|
||||||
|
DecryptionStream decryptor = PGPainless.decryptAndOrVerify()
|
||||||
|
.onInputStream(new ByteArrayInputStream(ciphertext))
|
||||||
|
.decryptWith(encryptionPassphrase)
|
||||||
|
.doNotVerify()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
ByteArrayOutputStream decrypted = new ByteArrayOutputStream();
|
||||||
|
|
||||||
|
Streams.pipeAll(decryptor, decrypted);
|
||||||
|
decryptor.close();
|
||||||
|
|
||||||
|
assertArrayEquals(plaintext, decrypted.toByteArray());
|
||||||
|
|
||||||
|
// Test public key decryption
|
||||||
|
PGPSecretKeyRingCollection decryptionKeys = TestKeys.getCryptieSecretKeyRingCollection();
|
||||||
|
SecretKeyRingProtector protector = new PasswordBasedSecretKeyRingProtector(
|
||||||
|
KeyRingProtectionSettings.secureDefaultSettings(),
|
||||||
|
new SolitaryPassphraseProvider(Passphrase.fromPassword(TestKeys.CRYPTIE_PASSWORD)));
|
||||||
|
decryptor = PGPainless.decryptAndOrVerify()
|
||||||
|
.onInputStream(new ByteArrayInputStream(ciphertext))
|
||||||
|
.decryptWith(protector, decryptionKeys)
|
||||||
|
.doNotVerify()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
decrypted = new ByteArrayOutputStream();
|
||||||
|
|
||||||
|
Streams.pipeAll(decryptor, decrypted);
|
||||||
|
decryptor.close();
|
||||||
|
|
||||||
|
assertArrayEquals(plaintext, decrypted.toByteArray());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,17 @@
|
||||||
*/
|
*/
|
||||||
package org.pgpainless.sop.commands;
|
package org.pgpainless.sop.commands;
|
||||||
|
|
||||||
|
import static org.pgpainless.sop.Print.err_ln;
|
||||||
|
import static org.pgpainless.sop.Print.print_ln;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
import org.bouncycastle.openpgp.PGPException;
|
import org.bouncycastle.openpgp.PGPException;
|
||||||
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
||||||
import org.bouncycastle.openpgp.PGPSecretKey;
|
import org.bouncycastle.openpgp.PGPSecretKey;
|
||||||
|
@ -32,17 +43,6 @@ import org.pgpainless.key.protection.PassphraseMapKeyRingProtector;
|
||||||
import org.pgpainless.util.Passphrase;
|
import org.pgpainless.util.Passphrase;
|
||||||
import picocli.CommandLine;
|
import picocli.CommandLine;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Scanner;
|
|
||||||
|
|
||||||
import static org.pgpainless.sop.Print.err_ln;
|
|
||||||
import static org.pgpainless.sop.Print.print_ln;
|
|
||||||
|
|
||||||
@CommandLine.Command(name = "encrypt",
|
@CommandLine.Command(name = "encrypt",
|
||||||
description = "Encrypt a message from standard input")
|
description = "Encrypt a message from standard input")
|
||||||
public class Encrypt implements Runnable {
|
public class Encrypt implements Runnable {
|
||||||
|
@ -107,6 +107,11 @@ public class Encrypt implements Runnable {
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Passphrase[] passphraseArray = new Passphrase[withPassword.length];
|
||||||
|
for (int i = 0; i < withPassword.length; i++) {
|
||||||
|
String password = withPassword[i];
|
||||||
|
passphraseArray[i] = Passphrase.fromPassword(password);
|
||||||
|
}
|
||||||
|
|
||||||
Map<Long, Passphrase> passphraseMap = new HashMap<>();
|
Map<Long, Passphrase> passphraseMap = new HashMap<>();
|
||||||
Scanner scanner = null;
|
Scanner scanner = null;
|
||||||
|
@ -137,6 +142,8 @@ public class Encrypt implements Runnable {
|
||||||
EncryptionBuilderInterface.DetachedSign builder = PGPainless.encryptAndOrSign()
|
EncryptionBuilderInterface.DetachedSign builder = PGPainless.encryptAndOrSign()
|
||||||
.onOutputStream(System.out)
|
.onOutputStream(System.out)
|
||||||
.toRecipients(publicKeys)
|
.toRecipients(publicKeys)
|
||||||
|
.and()
|
||||||
|
.forPassphrases(passphraseArray)
|
||||||
.usingSecureAlgorithms();
|
.usingSecureAlgorithms();
|
||||||
EncryptionBuilderInterface.Armor builder_armor;
|
EncryptionBuilderInterface.Armor builder_armor;
|
||||||
if (signWith.length != 0) {
|
if (signWith.length != 0) {
|
||||||
|
|
Loading…
Reference in a new issue