summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-01-21 08:32:42 +0100
committerJustus Winter <justus@sequoia-pgp.org>2021-01-21 08:32:42 +0100
commit805a695646bcef387f152f28c1fde6dbf300b36f (patch)
treeed9a572172d82353b373e03eb32be181ef14781d
parent42d798f41e0a1d63e7f0fbb220278b15a9498eb8 (diff)
sq: Improve description of sign and verify.
-rw-r--r--sq/src/sq-usage.rs8
-rw-r--r--sq/src/sq_cli.rs4
2 files changed, 6 insertions, 6 deletions
diff --git a/sq/src/sq-usage.rs b/sq/src/sq-usage.rs
index 99c6cf38..3a380cff 100644
--- a/sq/src/sq-usage.rs
+++ b/sq/src/sq-usage.rs
@@ -23,8 +23,8 @@
//! SUBCOMMANDS:
//! encrypt Encrypts a message
//! decrypt Decrypts a message
-//! sign Signs a message
-//! verify Verifies a message
+//! sign Signs messages or data files
+//! verify Verifies signed messages or detached signatures
//! merge-signatures Merges two signatures
//! key Manipulates keys
//! certring Manipulates certificate rings
@@ -115,7 +115,7 @@
//! ## Subcommand sign
//!
//! ```text
-//! Signs a message
+//! Signs messages or data files
//!
//! USAGE:
//! sq sign [FLAGS] [OPTIONS] [--] [FILE]
@@ -143,7 +143,7 @@
//! ## Subcommand verify
//!
//! ```text
-//! Verifies a message
+//! Verifies signed messages or detached signatures
//!
//! USAGE:
//! sq verify [OPTIONS] [--] [FILE]
diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs
index 84418261..05159cc7 100644
--- a/sq/src/sq_cli.rs
+++ b/sq/src/sq_cli.rs
@@ -140,7 +140,7 @@ pub fn configure(app: App<'static, 'static>) -> App<'static, 'static> {
.subcommand(SubCommand::with_name("sign")
.display_order(200)
- .about("Signs a message")
+ .about("Signs messages or data files")
.arg(Arg::with_name("input")
.value_name("FILE")
.help("Sets the input file to use"))
@@ -174,7 +174,7 @@ pub fn configure(app: App<'static, 'static>) -> App<'static, 'static> {
.subcommand(SubCommand::with_name("verify")
.display_order(210)
- .about("Verifies a message")
+ .about("Verifies signed messages or detached signatures")
.arg(Arg::with_name("input")
.value_name("FILE")
.help("Sets the input file to use"))