1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 18:59:39 +02:00

Bump sop-java to 4.0.5 and adopt changes (--as=clearsigned)

This commit is contained in:
Paul Schaub 2022-11-11 13:46:05 +01:00
parent 86b06ee5e3
commit 243d64fcb4
5 changed files with 10 additions and 10 deletions

View file

@ -32,7 +32,7 @@ import sop.operation.InlineSign;
public class InlineSignImpl implements InlineSign {
private boolean armor = true;
private InlineSignAs mode = InlineSignAs.Binary;
private InlineSignAs mode = InlineSignAs.binary;
private final SigningOptions signingOptions = new SigningOptions();
private final MatchMakingSecretKeyRingProtector protector = new MatchMakingSecretKeyRingProtector();
private final List<PGPSecretKeyRing> signingKeys = new ArrayList<>();
@ -74,7 +74,7 @@ public class InlineSignImpl implements InlineSign {
public Ready data(InputStream data) throws SOPGPException.KeyIsProtected, IOException, SOPGPException.ExpectedText {
for (PGPSecretKeyRing key : signingKeys) {
try {
if (mode == InlineSignAs.CleartextSigned) {
if (mode == InlineSignAs.clearsigned) {
signingOptions.addDetachedSignature(protector, key);
} else {
signingOptions.addInlineSignature(protector, key, modeToSigType(mode));
@ -87,7 +87,7 @@ public class InlineSignImpl implements InlineSign {
}
ProducerOptions producerOptions = ProducerOptions.sign(signingOptions);
if (mode == InlineSignAs.CleartextSigned) {
if (mode == InlineSignAs.clearsigned) {
producerOptions.setCleartextSigned();
producerOptions.setAsciiArmor(true);
} else {
@ -119,7 +119,7 @@ public class InlineSignImpl implements InlineSign {
}
private static DocumentSignatureType modeToSigType(InlineSignAs mode) {
return mode == InlineSignAs.Binary ? DocumentSignatureType.BINARY_DOCUMENT
return mode == InlineSignAs.binary ? DocumentSignatureType.BINARY_DOCUMENT
: DocumentSignatureType.CANONICAL_TEXT_DOCUMENT;
}
}

View file

@ -63,7 +63,7 @@ public class InlineDetachTest {
byte[] cleartextSigned = sop.inlineSign()
.key(key)
.withKeyPassword("sw0rdf1sh")
.mode(InlineSignAs.CleartextSigned)
.mode(InlineSignAs.clearsigned)
.data(data).getBytes();
// actually detach the message

View file

@ -36,7 +36,7 @@ public class InlineSignVerifyRoundtripTest {
byte[] inlineSigned = sop.inlineSign()
.key(key)
.withKeyPassword("sw0rdf1sh")
.mode(InlineSignAs.CleartextSigned)
.mode(InlineSignAs.clearsigned)
.data(message).getBytes();
ByteArrayAndResult<List<Verification>> result = sop.inlineVerify()