Rename DetachInbandSignaturesAndMessageCmd to InlineDetachCmd

This commit is contained in:
Paul Schaub 2022-05-24 21:56:17 +02:00
parent 55aefb799f
commit de11c17967
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import sop.SOP;
import sop.cli.picocli.commands.ArmorCmd;
import sop.cli.picocli.commands.DearmorCmd;
import sop.cli.picocli.commands.DecryptCmd;
import sop.cli.picocli.commands.DetachInbandSignatureAndMessageCmd;
import sop.cli.picocli.commands.InlineDetachCmd;
import sop.cli.picocli.commands.EncryptCmd;
import sop.cli.picocli.commands.ExtractCertCmd;
import sop.cli.picocli.commands.GenerateKeyCmd;
@ -27,7 +27,7 @@ import sop.cli.picocli.commands.VersionCmd;
ArmorCmd.class,
DearmorCmd.class,
DecryptCmd.class,
DetachInbandSignatureAndMessageCmd.class,
InlineDetachCmd.class,
EncryptCmd.class,
ExtractCertCmd.class,
GenerateKeyCmd.class,

View file

@ -17,7 +17,7 @@ import sop.operation.InlineDetach;
@CommandLine.Command(name = "detach-inband-signature-and-message",
description = "Split a clearsigned message",
exitCodeOnInvalidInput = SOPGPException.UnsupportedOption.EXIT_CODE)
public class DetachInbandSignatureAndMessageCmd implements Runnable {
public class InlineDetachCmd implements Runnable {
@CommandLine.Option(
names = {"--signatures-out"},