mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 20:32:05 +01:00
Add descriptions to all tasks
This commit is contained in:
parent
1e3721c4e5
commit
7edd6bc86d
4 changed files with 4 additions and 4 deletions
|
@ -28,7 +28,7 @@ import picocli.CommandLine;
|
|||
import static org.pgpainless.sop.Print.err_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 {
|
||||
|
||||
@CommandLine.Option(names = "--no-armor",
|
||||
|
|
|
@ -28,7 +28,7 @@ import picocli.CommandLine;
|
|||
import static org.pgpainless.sop.Print.err_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 {
|
||||
|
||||
@CommandLine.Option(names = "--no-armor",
|
||||
|
|
|
@ -34,7 +34,7 @@ import picocli.CommandLine;
|
|||
import static org.pgpainless.sop.Print.err_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 enum Type {
|
||||
|
|
|
@ -42,7 +42,7 @@ import java.util.TimeZone;
|
|||
import static org.pgpainless.sop.Print.err_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 {
|
||||
|
||||
private static final TimeZone tz = TimeZone.getTimeZone("UTC");
|
||||
|
|
Loading…
Reference in a new issue