1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-26 21:44:50 +02:00

Please the checkstyle checker

This commit is contained in:
Paul Schaub 2023-11-27 13:26:41 +01:00
parent c61a129e08
commit b7e8b56e3d
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -92,10 +92,10 @@ public class DecryptAndVerifyMessageTest {
.addDecryptionKey(juliet) .addDecryptionKey(juliet)
.addVerificationCert(KeyRingUtils.publicKeyRingFrom(juliet)); .addVerificationCert(KeyRingUtils.publicKeyRingFrom(juliet));
try (final DecryptionStream decryptor = PGPainless.decryptAndOrVerify() try (DecryptionStream decryptor = PGPainless.decryptAndOrVerify()
.onInputStream(new ByteArrayInputStream(encryptedMessage.getBytes())) .onInputStream(new ByteArrayInputStream(encryptedMessage.getBytes()))
.withOptions(options); .withOptions(options);
final ByteArrayOutputStream toPlain = new ByteArrayOutputStream()) { ByteArrayOutputStream toPlain = new ByteArrayOutputStream()) {
Streams.pipeAll(decryptor, toPlain); Streams.pipeAll(decryptor, toPlain);
assertEquals(-1, decryptor.read()); assertEquals(-1, decryptor.read());
} }