pgpainless/src/test/java/de/vanitasvitae/crypto/pgpainless/EncryptDecryptTest.java

127 lines
5.6 KiB
Java
Raw Normal View History

2018-06-07 18:12:13 +02:00
package de.vanitasvitae.crypto.pgpainless;
import static junit.framework.TestCase.assertTrue;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
2018-06-08 15:29:09 +02:00
import java.nio.charset.Charset;
2018-06-10 17:12:44 +02:00
import java.security.InvalidAlgorithmParameterException;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
2018-06-07 18:12:13 +02:00
import java.util.Arrays;
import java.util.Collections;
2018-06-10 17:12:44 +02:00
import java.util.logging.Level;
import java.util.logging.Logger;
2018-06-07 18:12:13 +02:00
2018-06-11 01:33:49 +02:00
import de.vanitasvitae.crypto.pgpainless.decryption_verification.DecryptionStream;
import de.vanitasvitae.crypto.pgpainless.decryption_verification.PainlessResult;
2018-06-10 17:12:44 +02:00
import de.vanitasvitae.crypto.pgpainless.key.SecretKeyRingProtector;
2018-06-07 18:12:13 +02:00
import de.vanitasvitae.crypto.pgpainless.key.UnprotectedKeysProtector;
2018-06-10 17:12:44 +02:00
import de.vanitasvitae.crypto.pgpainless.key.generation.type.length.RsaLength;
import de.vanitasvitae.crypto.pgpainless.util.BCUtil;
2018-06-07 18:12:13 +02:00
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPPublicKeyRing;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.bouncycastle.util.io.Streams;
2018-06-10 17:12:44 +02:00
import org.junit.Ignore;
2018-06-07 18:12:13 +02:00
import org.junit.Test;
2018-06-10 17:12:44 +02:00
public class EncryptDecryptTest extends AbstractPGPainlessTest {
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
private static final Charset UTF8 = Charset.forName("UTF-8");
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
@Test
public void freshKeysRsaToRsaTest()
2018-06-10 17:12:44 +02:00
throws PGPException, NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException,
IOException {
PGPSecretKeyRing sender = PGPainless.generateKeyRing().simpleRsaKeyRing("hatter@wonderland.lit", RsaLength._4096);
PGPSecretKeyRing recipient = PGPainless.generateKeyRing().simpleRsaKeyRing("alice@wonderland.lit", RsaLength._4096);
2018-06-10 17:12:44 +02:00
encryptDecryptForSecretKeyRings(sender, recipient);
2018-06-07 18:12:13 +02:00
}
@Test
public void freshKeysEcToEcTest() throws IOException, PGPException, NoSuchAlgorithmException, NoSuchProviderException,
2018-06-10 17:12:44 +02:00
InvalidAlgorithmParameterException {
PGPSecretKeyRing sender = PGPainless.generateKeyRing().simpleEcKeyRing("hatter@wonderland.lit");
PGPSecretKeyRing recipient = PGPainless.generateKeyRing().simpleEcKeyRing("alice@wonderland.lit");
2018-06-10 17:12:44 +02:00
encryptDecryptForSecretKeyRings(sender, recipient);
2018-06-07 18:12:13 +02:00
}
@Test
public void freshKeysEcToRsaTest()
2018-06-10 17:12:44 +02:00
throws PGPException, NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException,
IOException {
PGPSecretKeyRing sender = PGPainless.generateKeyRing().simpleEcKeyRing("hatter@wonderland.lit");
PGPSecretKeyRing recipient = PGPainless.generateKeyRing().simpleRsaKeyRing("alice@wonderland.lit", RsaLength._4096);
2018-06-07 18:12:13 +02:00
encryptDecryptForSecretKeyRings(sender, recipient);
2018-06-10 17:12:44 +02:00
}
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
@Test
public void freshKeysRsaToEcTest()
2018-06-10 17:12:44 +02:00
throws PGPException, NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException,
IOException {
PGPSecretKeyRing sender = PGPainless.generateKeyRing().simpleRsaKeyRing("hatter@wonderland.lit", RsaLength._4096);
PGPSecretKeyRing recipient = PGPainless.generateKeyRing().simpleEcKeyRing("alice@wonderland.lit");
2018-06-07 18:12:13 +02:00
encryptDecryptForSecretKeyRings(sender, recipient);
2018-06-10 17:12:44 +02:00
}
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
@Ignore
private void encryptDecryptForSecretKeyRings(PGPSecretKeyRing sender, PGPSecretKeyRing recipient)
2018-06-10 17:12:44 +02:00
throws PGPException,
IOException {
PGPPublicKeyRing recipientPub = BCUtil.publicKeyRingFromSecretKeyRing(recipient);
PGPPublicKeyRing senderPub = BCUtil.publicKeyRingFromSecretKeyRing(sender);
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
SecretKeyRingProtector keyDecryptor = new UnprotectedKeysProtector();
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
byte[] secretMessage = ("Ah, Juliet, if the measure of thy joy\n" +
"Be heaped like mine, and that thy skill be more\n" +
"To blazon it, then sweeten with thy breath\n" +
"This neighbor air, and let rich musics tongue\n" +
"Unfold the imagined happiness that both\n" +
"Receive in either by this dear encounter.").getBytes(UTF8);
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
ByteArrayOutputStream envelope = new ByteArrayOutputStream();
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
OutputStream encryptor = PGPainless.createEncryptor()
.onOutputStream(envelope)
2018-06-11 01:33:49 +02:00
.toRecipients(recipientPub)
2018-06-10 17:12:44 +02:00
.usingSecureAlgorithms()
2018-06-11 01:33:49 +02:00
.signWith(keyDecryptor, sender)
2018-06-10 17:12:44 +02:00
.noArmor();
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
Streams.pipeAll(new ByteArrayInputStream(secretMessage), encryptor);
encryptor.close();
byte[] encryptedSecretMessage = envelope.toByteArray();
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
// Juliet trieth to comprehend Romeos words
2018-06-07 18:12:13 +02:00
2018-06-10 17:12:44 +02:00
ByteArrayInputStream envelopeIn = new ByteArrayInputStream(encryptedSecretMessage);
2018-06-11 01:33:49 +02:00
DecryptionStream decryptor = PGPainless.createDecryptor()
2018-06-10 17:12:44 +02:00
.onInputStream(envelopeIn)
.decryptWith(BCUtil.keyRingsToKeyRingCollection(recipient), keyDecryptor)
.verifyWith(Collections.singleton(TestKeys.ROMEO_KEY_ID), BCUtil.keyRingsToKeyRingCollection(senderPub))
2018-06-07 18:12:13 +02:00
.ignoreMissingPublicKeys()
.build();
2018-06-10 17:12:44 +02:00
OutputStream decryptedSecretMessage = new ByteArrayOutputStream();
Streams.pipeAll(decryptor, decryptedSecretMessage);
2018-06-07 18:12:13 +02:00
decryptor.close();
2018-06-10 17:12:44 +02:00
assertTrue(Arrays.equals(secretMessage, ((ByteArrayOutputStream) decryptedSecretMessage).toByteArray()));
2018-06-11 01:33:49 +02:00
PainlessResult result = decryptor.getResult();
assertTrue(result.containsVerifiedSignatureFrom(senderPub));
assertTrue(result.isIntegrityProtected());
assertTrue(result.isSigned());
assertTrue(result.isEncrypted());
assertTrue(result.isVerified());
2018-06-07 18:12:13 +02:00
}
}