mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 20:32:05 +01:00
Please the checkstyle checker
This commit is contained in:
parent
c61a129e08
commit
b7e8b56e3d
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue