mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 04:57:56 +01:00
Encrypt: Add --session-key-out support
This commit is contained in:
parent
a8829350a8
commit
5ee9414410
7 changed files with 162 additions and 40 deletions
|
@ -147,7 +147,7 @@ public class ExternalSOP implements SOP {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Encrypt encrypt() {
|
public Encrypt encrypt() {
|
||||||
return new EncryptExternal(binaryName, properties);
|
return new EncryptExternal(binaryName, properties, tempDirProvider);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -4,14 +4,19 @@
|
||||||
|
|
||||||
package sop.external.operation;
|
package sop.external.operation;
|
||||||
|
|
||||||
import sop.Ready;
|
import sop.EncryptionResult;
|
||||||
|
import sop.ReadyWithResult;
|
||||||
|
import sop.SessionKey;
|
||||||
import sop.enums.EncryptAs;
|
import sop.enums.EncryptAs;
|
||||||
import sop.exception.SOPGPException;
|
import sop.exception.SOPGPException;
|
||||||
import sop.external.ExternalSOP;
|
import sop.external.ExternalSOP;
|
||||||
import sop.operation.Encrypt;
|
import sop.operation.Encrypt;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
|
@ -21,6 +26,7 @@ import java.util.Properties;
|
||||||
*/
|
*/
|
||||||
public class EncryptExternal implements Encrypt {
|
public class EncryptExternal implements Encrypt {
|
||||||
|
|
||||||
|
private final ExternalSOP.TempDirProvider tempDirProvider;
|
||||||
private final List<String> commandList = new ArrayList<>();
|
private final List<String> commandList = new ArrayList<>();
|
||||||
private final List<String> envList;
|
private final List<String> envList;
|
||||||
private int SIGN_WITH_COUNTER = 0;
|
private int SIGN_WITH_COUNTER = 0;
|
||||||
|
@ -28,7 +34,8 @@ public class EncryptExternal implements Encrypt {
|
||||||
private int PASSWORD_COUNTER = 0;
|
private int PASSWORD_COUNTER = 0;
|
||||||
private int CERT_COUNTER = 0;
|
private int CERT_COUNTER = 0;
|
||||||
|
|
||||||
public EncryptExternal(String binary, Properties environment) {
|
public EncryptExternal(String binary, Properties environment, ExternalSOP.TempDirProvider tempDirProvider) {
|
||||||
|
this.tempDirProvider = tempDirProvider;
|
||||||
this.commandList.add(binary);
|
this.commandList.add(binary);
|
||||||
this.commandList.add("encrypt");
|
this.commandList.add("encrypt");
|
||||||
this.envList = ExternalSOP.propertiesToEnv(environment);
|
this.envList = ExternalSOP.propertiesToEnv(environment);
|
||||||
|
@ -92,8 +99,53 @@ public class EncryptExternal implements Encrypt {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Ready plaintext(InputStream plaintext)
|
public ReadyWithResult<EncryptionResult> plaintext(InputStream plaintext)
|
||||||
throws SOPGPException.KeyIsProtected {
|
throws SOPGPException.KeyIsProtected, IOException {
|
||||||
return ExternalSOP.executeTransformingOperation(Runtime.getRuntime(), commandList, envList, plaintext);
|
File tempDir = tempDirProvider.provideTempDirectory();
|
||||||
|
|
||||||
|
File sessionKeyOut = new File(tempDir, "session-key-out");
|
||||||
|
sessionKeyOut.delete();
|
||||||
|
commandList.add("--session-key-out=" + sessionKeyOut.getAbsolutePath());
|
||||||
|
|
||||||
|
String[] command = commandList.toArray(new String[0]);
|
||||||
|
String[] env = envList.toArray(new String[0]);
|
||||||
|
try {
|
||||||
|
Process process = Runtime.getRuntime().exec(command, env);
|
||||||
|
OutputStream processOut = process.getOutputStream();
|
||||||
|
InputStream processIn = process.getInputStream();
|
||||||
|
|
||||||
|
return new ReadyWithResult<EncryptionResult>() {
|
||||||
|
@Override
|
||||||
|
public EncryptionResult writeTo(OutputStream outputStream) throws IOException {
|
||||||
|
byte[] buf = new byte[4096];
|
||||||
|
int r;
|
||||||
|
while ((r = plaintext.read(buf)) > 0) {
|
||||||
|
processOut.write(buf, 0, r);
|
||||||
|
}
|
||||||
|
|
||||||
|
plaintext.close();
|
||||||
|
processOut.close();
|
||||||
|
|
||||||
|
while ((r = processIn.read(buf)) > 0) {
|
||||||
|
outputStream.write(buf, 0 , r);
|
||||||
|
}
|
||||||
|
|
||||||
|
processIn.close();
|
||||||
|
outputStream.close();
|
||||||
|
|
||||||
|
ExternalSOP.finish(process);
|
||||||
|
|
||||||
|
FileInputStream sessionKeyOutIn = new FileInputStream(sessionKeyOut);
|
||||||
|
String line = ExternalSOP.readString(sessionKeyOutIn);
|
||||||
|
SessionKey sessionKey = SessionKey.fromString(line.trim());
|
||||||
|
sessionKeyOutIn.close();
|
||||||
|
sessionKeyOut.delete();
|
||||||
|
|
||||||
|
return new EncryptionResult(sessionKey);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
package sop.cli.picocli.commands;
|
package sop.cli.picocli.commands;
|
||||||
|
|
||||||
import picocli.CommandLine;
|
import picocli.CommandLine;
|
||||||
import sop.Ready;
|
import sop.EncryptionResult;
|
||||||
|
import sop.ReadyWithResult;
|
||||||
|
import sop.SessionKey;
|
||||||
import sop.cli.picocli.SopCLI;
|
import sop.cli.picocli.SopCLI;
|
||||||
import sop.enums.EncryptAs;
|
import sop.enums.EncryptAs;
|
||||||
import sop.exception.SOPGPException;
|
import sop.exception.SOPGPException;
|
||||||
|
@ -13,6 +15,8 @@ import sop.operation.Encrypt;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.io.PrintWriter;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -49,11 +53,18 @@ public class EncryptCmd extends AbstractSopCmd {
|
||||||
paramLabel = "CERTS")
|
paramLabel = "CERTS")
|
||||||
List<String> certs = new ArrayList<>();
|
List<String> certs = new ArrayList<>();
|
||||||
|
|
||||||
|
@CommandLine.Option(
|
||||||
|
names = {"--session-key-out"},
|
||||||
|
paramLabel = "SESSIONKEY")
|
||||||
|
String sessionKeyOut;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
Encrypt encrypt = throwIfUnsupportedSubcommand(
|
Encrypt encrypt = throwIfUnsupportedSubcommand(
|
||||||
SopCLI.getSop().encrypt(), "encrypt");
|
SopCLI.getSop().encrypt(), "encrypt");
|
||||||
|
|
||||||
|
throwIfOutputExists(sessionKeyOut);
|
||||||
|
|
||||||
if (profile != null) {
|
if (profile != null) {
|
||||||
try {
|
try {
|
||||||
encrypt.profile(profile);
|
encrypt.profile(profile);
|
||||||
|
@ -145,8 +156,27 @@ public class EncryptCmd extends AbstractSopCmd {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Ready ready = encrypt.plaintext(System.in);
|
ReadyWithResult<EncryptionResult> ready = encrypt.plaintext(System.in);
|
||||||
ready.writeTo(System.out);
|
EncryptionResult result = ready.writeTo(System.out);
|
||||||
|
|
||||||
|
if (sessionKeyOut == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try (OutputStream outputStream = getOutput(sessionKeyOut)) {
|
||||||
|
if (!result.getSessionKey().isPresent()) {
|
||||||
|
String errorMsg = getMsg("sop.error.runtime.no_session_key_extracted");
|
||||||
|
throw new SOPGPException.UnsupportedOption(String.format(errorMsg, "--session-key-out"));
|
||||||
|
}
|
||||||
|
SessionKey sessionKey = result.getSessionKey().get();
|
||||||
|
if (sessionKey == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PrintWriter writer = new PrintWriter(outputStream);
|
||||||
|
// CHECKSTYLE:OFF
|
||||||
|
writer.println(sessionKey);
|
||||||
|
// CHECKSTYLE:ON
|
||||||
|
writer.flush();
|
||||||
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,24 @@
|
||||||
|
|
||||||
package sop.cli.picocli.commands;
|
package sop.cli.picocli.commands;
|
||||||
|
|
||||||
|
import com.ginsberg.junit.exit.ExpectSystemExitWithStatus;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import sop.EncryptionResult;
|
||||||
|
import sop.ReadyWithResult;
|
||||||
|
import sop.SOP;
|
||||||
|
import sop.cli.picocli.SopCLI;
|
||||||
|
import sop.cli.picocli.TestFileUtil;
|
||||||
|
import sop.enums.EncryptAs;
|
||||||
|
import sop.exception.SOPGPException;
|
||||||
|
import sop.operation.Encrypt;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
|
||||||
import static org.mockito.ArgumentMatchers.any;
|
import static org.mockito.ArgumentMatchers.any;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
import static org.mockito.Mockito.never;
|
import static org.mockito.Mockito.never;
|
||||||
|
@ -11,22 +29,6 @@ import static org.mockito.Mockito.times;
|
||||||
import static org.mockito.Mockito.verify;
|
import static org.mockito.Mockito.verify;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.OutputStream;
|
|
||||||
|
|
||||||
import com.ginsberg.junit.exit.ExpectSystemExitWithStatus;
|
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import sop.Ready;
|
|
||||||
import sop.SOP;
|
|
||||||
import sop.cli.picocli.SopCLI;
|
|
||||||
import sop.cli.picocli.TestFileUtil;
|
|
||||||
import sop.enums.EncryptAs;
|
|
||||||
import sop.exception.SOPGPException;
|
|
||||||
import sop.operation.Encrypt;
|
|
||||||
|
|
||||||
public class EncryptCmdTest {
|
public class EncryptCmdTest {
|
||||||
|
|
||||||
Encrypt encrypt;
|
Encrypt encrypt;
|
||||||
|
@ -34,10 +36,10 @@ public class EncryptCmdTest {
|
||||||
@BeforeEach
|
@BeforeEach
|
||||||
public void mockComponents() throws IOException {
|
public void mockComponents() throws IOException {
|
||||||
encrypt = mock(Encrypt.class);
|
encrypt = mock(Encrypt.class);
|
||||||
when(encrypt.plaintext((InputStream) any())).thenReturn(new Ready() {
|
when(encrypt.plaintext((InputStream) any())).thenReturn(new ReadyWithResult<EncryptionResult>() {
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(OutputStream outputStream) {
|
public EncryptionResult writeTo(@NotNull OutputStream outputStream) throws IOException, SOPGPException {
|
||||||
|
return new EncryptionResult(null);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -190,9 +192,9 @@ public class EncryptCmdTest {
|
||||||
@Test
|
@Test
|
||||||
@ExpectSystemExitWithStatus(1)
|
@ExpectSystemExitWithStatus(1)
|
||||||
public void writeTo_ioExceptionCausesExit1() throws IOException {
|
public void writeTo_ioExceptionCausesExit1() throws IOException {
|
||||||
when(encrypt.plaintext((InputStream) any())).thenReturn(new Ready() {
|
when(encrypt.plaintext((InputStream) any())).thenReturn(new ReadyWithResult<EncryptionResult>() {
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(OutputStream outputStream) throws IOException {
|
public EncryptionResult writeTo(@NotNull OutputStream outputStream) throws IOException, SOPGPException {
|
||||||
throw new IOException();
|
throw new IOException();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
15
sop-java/src/main/kotlin/sop/EncryptionResult.kt
Normal file
15
sop-java/src/main/kotlin/sop/EncryptionResult.kt
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package sop
|
||||||
|
|
||||||
|
import sop.util.Optional
|
||||||
|
|
||||||
|
class EncryptionResult(sessionKey: SessionKey?) {
|
||||||
|
val sessionKey: Optional<SessionKey>
|
||||||
|
|
||||||
|
init {
|
||||||
|
this.sessionKey = Optional.ofNullable(sessionKey)
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,8 +6,9 @@ package sop.operation
|
||||||
|
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.io.InputStream
|
import java.io.InputStream
|
||||||
|
import sop.EncryptionResult
|
||||||
import sop.Profile
|
import sop.Profile
|
||||||
import sop.Ready
|
import sop.ReadyWithResult
|
||||||
import sop.enums.EncryptAs
|
import sop.enums.EncryptAs
|
||||||
import sop.exception.SOPGPException.*
|
import sop.exception.SOPGPException.*
|
||||||
import sop.util.UTF8Util
|
import sop.util.UTF8Util
|
||||||
|
@ -146,20 +147,22 @@ interface Encrypt {
|
||||||
* Encrypt the given data yielding the ciphertext.
|
* Encrypt the given data yielding the ciphertext.
|
||||||
*
|
*
|
||||||
* @param plaintext plaintext
|
* @param plaintext plaintext
|
||||||
* @return input stream containing the ciphertext
|
* @return result and ciphertext
|
||||||
* @throws IOException in case of an IO error
|
* @throws IOException in case of an IO error
|
||||||
* @throws KeyIsProtected if at least one signing key cannot be unlocked
|
* @throws KeyIsProtected if at least one signing key cannot be unlocked
|
||||||
*/
|
*/
|
||||||
@Throws(IOException::class, KeyIsProtected::class) fun plaintext(plaintext: InputStream): Ready
|
@Throws(IOException::class, KeyIsProtected::class)
|
||||||
|
fun plaintext(plaintext: InputStream): ReadyWithResult<EncryptionResult>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encrypt the given data yielding the ciphertext.
|
* Encrypt the given data yielding the ciphertext.
|
||||||
*
|
*
|
||||||
* @param plaintext plaintext
|
* @param plaintext plaintext
|
||||||
* @return input stream containing the ciphertext
|
* @return result and ciphertext
|
||||||
* @throws IOException in case of an IO error
|
* @throws IOException in case of an IO error
|
||||||
* @throws KeyIsProtected if at least one signing key cannot be unlocked
|
* @throws KeyIsProtected if at least one signing key cannot be unlocked
|
||||||
*/
|
*/
|
||||||
@Throws(IOException::class, KeyIsProtected::class)
|
@Throws(IOException::class, KeyIsProtected::class)
|
||||||
fun plaintext(plaintext: ByteArray): Ready = plaintext(plaintext.inputStream())
|
fun plaintext(plaintext: ByteArray): ReadyWithResult<EncryptionResult> =
|
||||||
|
plaintext(plaintext.inputStream())
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,13 +10,16 @@ import org.junit.jupiter.params.provider.Arguments;
|
||||||
import org.junit.jupiter.params.provider.MethodSource;
|
import org.junit.jupiter.params.provider.MethodSource;
|
||||||
import sop.ByteArrayAndResult;
|
import sop.ByteArrayAndResult;
|
||||||
import sop.DecryptionResult;
|
import sop.DecryptionResult;
|
||||||
|
import sop.EncryptionResult;
|
||||||
import sop.SOP;
|
import sop.SOP;
|
||||||
|
import sop.SessionKey;
|
||||||
import sop.Verification;
|
import sop.Verification;
|
||||||
import sop.enums.EncryptAs;
|
import sop.enums.EncryptAs;
|
||||||
import sop.enums.SignatureMode;
|
import sop.enums.SignatureMode;
|
||||||
import sop.exception.SOPGPException;
|
import sop.exception.SOPGPException;
|
||||||
import sop.testsuite.TestData;
|
import sop.testsuite.TestData;
|
||||||
import sop.testsuite.assertions.VerificationListAssert;
|
import sop.testsuite.assertions.VerificationListAssert;
|
||||||
|
import sop.util.Optional;
|
||||||
import sop.util.UTCUtil;
|
import sop.util.UTCUtil;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -27,6 +30,7 @@ import java.util.List;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||||
|
|
||||||
|
@ -41,18 +45,26 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
@MethodSource("provideInstances")
|
@MethodSource("provideInstances")
|
||||||
public void encryptDecryptRoundTripPasswordTest(SOP sop) throws IOException {
|
public void encryptDecryptRoundTripPasswordTest(SOP sop) throws IOException {
|
||||||
byte[] message = TestData.PLAINTEXT.getBytes(StandardCharsets.UTF_8);
|
byte[] message = TestData.PLAINTEXT.getBytes(StandardCharsets.UTF_8);
|
||||||
byte[] ciphertext = sop.encrypt()
|
ByteArrayAndResult<EncryptionResult> encResult = sop.encrypt()
|
||||||
.withPassword("sw0rdf1sh")
|
.withPassword("sw0rdf1sh")
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
.getBytes();
|
.toByteArrayAndResult();
|
||||||
|
|
||||||
byte[] plaintext = sop.decrypt()
|
byte[] ciphertext = encResult.getBytes();
|
||||||
|
Optional<SessionKey> encSessionKey = encResult.getResult().getSessionKey();
|
||||||
|
|
||||||
|
ByteArrayAndResult<DecryptionResult> decResult = sop.decrypt()
|
||||||
.withPassword("sw0rdf1sh")
|
.withPassword("sw0rdf1sh")
|
||||||
.ciphertext(ciphertext)
|
.ciphertext(ciphertext)
|
||||||
.toByteArrayAndResult()
|
.toByteArrayAndResult();
|
||||||
.getBytes();
|
|
||||||
|
byte[] plaintext = decResult.getBytes();
|
||||||
|
Optional<SessionKey> decSessionKey = decResult.getResult().getSessionKey();
|
||||||
|
|
||||||
assertArrayEquals(message, plaintext);
|
assertArrayEquals(message, plaintext);
|
||||||
|
if (encSessionKey.isPresent() && decSessionKey.isPresent()) {
|
||||||
|
assertEquals(encSessionKey.get(), decSessionKey.get());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ParameterizedTest
|
@ParameterizedTest
|
||||||
|
@ -62,6 +74,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
byte[] ciphertext = sop.encrypt()
|
byte[] ciphertext = sop.encrypt()
|
||||||
.withCert(TestData.ALICE_CERT.getBytes(StandardCharsets.UTF_8))
|
.withCert(TestData.ALICE_CERT.getBytes(StandardCharsets.UTF_8))
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
||||||
|
@ -83,6 +96,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
byte[] ciphertext = sop.encrypt()
|
byte[] ciphertext = sop.encrypt()
|
||||||
.withCert(TestData.BOB_CERT.getBytes(StandardCharsets.UTF_8))
|
.withCert(TestData.BOB_CERT.getBytes(StandardCharsets.UTF_8))
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
byte[] plaintext = sop.decrypt()
|
byte[] plaintext = sop.decrypt()
|
||||||
|
@ -101,6 +115,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
byte[] ciphertext = sop.encrypt()
|
byte[] ciphertext = sop.encrypt()
|
||||||
.withCert(TestData.CAROL_CERT.getBytes(StandardCharsets.UTF_8))
|
.withCert(TestData.CAROL_CERT.getBytes(StandardCharsets.UTF_8))
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
byte[] plaintext = sop.decrypt()
|
byte[] plaintext = sop.decrypt()
|
||||||
|
@ -120,6 +135,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
.withCert(TestData.ALICE_CERT.getBytes(StandardCharsets.UTF_8))
|
.withCert(TestData.ALICE_CERT.getBytes(StandardCharsets.UTF_8))
|
||||||
.noArmor()
|
.noArmor()
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
byte[] armored = sop.armor()
|
byte[] armored = sop.armor()
|
||||||
|
@ -144,6 +160,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
.signWith(TestData.ALICE_KEY.getBytes(StandardCharsets.UTF_8))
|
.signWith(TestData.ALICE_KEY.getBytes(StandardCharsets.UTF_8))
|
||||||
.mode(EncryptAs.binary)
|
.mode(EncryptAs.binary)
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
||||||
|
@ -175,6 +192,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
.signWith(TestData.ALICE_KEY.getBytes(StandardCharsets.UTF_8))
|
.signWith(TestData.ALICE_KEY.getBytes(StandardCharsets.UTF_8))
|
||||||
.mode(EncryptAs.text)
|
.mode(EncryptAs.text)
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
||||||
|
@ -215,6 +233,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
.signWith(key)
|
.signWith(key)
|
||||||
.withKeyPassword(keyPassword)
|
.withKeyPassword(keyPassword)
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes();
|
.getBytes();
|
||||||
|
|
||||||
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
ByteArrayAndResult<DecryptionResult> bytesAndResult = sop.decrypt()
|
||||||
|
@ -305,6 +324,7 @@ public class EncryptDecryptTest extends AbstractSOPTest {
|
||||||
|
|
||||||
assertThrows(SOPGPException.MissingArg.class, () -> sop.encrypt()
|
assertThrows(SOPGPException.MissingArg.class, () -> sop.encrypt()
|
||||||
.plaintext(message)
|
.plaintext(message)
|
||||||
|
.toByteArrayAndResult()
|
||||||
.getBytes());
|
.getBytes());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue