1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-26 14:22:05 +01:00

Add descriptions to all tasks

This commit is contained in:
Paul Schaub 2020-12-22 22:07:13 +01:00
parent 1e3721c4e5
commit 7edd6bc86d
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ import picocli.CommandLine;
import static org.pgpainless.sop.Print.err_ln; import static org.pgpainless.sop.Print.err_ln;
import static org.pgpainless.sop.Print.print_ln; import static org.pgpainless.sop.Print.print_ln;
@CommandLine.Command(name = "extract-cert") @CommandLine.Command(name = "extract-cert", description = "Extract a public key certificate from a secret key")
public class ExtractCert implements Runnable { public class ExtractCert implements Runnable {
@CommandLine.Option(names = "--no-armor", @CommandLine.Option(names = "--no-armor",

View file

@ -28,7 +28,7 @@ import picocli.CommandLine;
import static org.pgpainless.sop.Print.err_ln; import static org.pgpainless.sop.Print.err_ln;
import static org.pgpainless.sop.Print.print_ln; import static org.pgpainless.sop.Print.print_ln;
@CommandLine.Command(name = "generate-key") @CommandLine.Command(name = "generate-key", description = "Generate a secret key")
public class GenerateKey implements Runnable { public class GenerateKey implements Runnable {
@CommandLine.Option(names = "--no-armor", @CommandLine.Option(names = "--no-armor",

View file

@ -34,7 +34,7 @@ import picocli.CommandLine;
import static org.pgpainless.sop.Print.err_ln; import static org.pgpainless.sop.Print.err_ln;
import static org.pgpainless.sop.Print.print_ln; import static org.pgpainless.sop.Print.print_ln;
@CommandLine.Command(name = "sign") @CommandLine.Command(name = "sign", description = "Create a detached signature")
public class Sign implements Runnable { public class Sign implements Runnable {
public enum Type { public enum Type {

View file

@ -42,7 +42,7 @@ import java.util.TimeZone;
import static org.pgpainless.sop.Print.err_ln; import static org.pgpainless.sop.Print.err_ln;
import static org.pgpainless.sop.Print.print_ln; import static org.pgpainless.sop.Print.print_ln;
@CommandLine.Command(name = "verify", description = "Verify a detached signature.\nThe signed data is being read from standard input.") @CommandLine.Command(name = "verify", description = "Verify a detached signature")
public class Verify implements Runnable { public class Verify implements Runnable {
private static final TimeZone tz = TimeZone.getTimeZone("UTC"); private static final TimeZone tz = TimeZone.getTimeZone("UTC");