summaryrefslogtreecommitdiffstats
path: root/sqv/src/sqv-usage.rs
blob: 83a0828e0632c760c70fc8efc7cb5ea7a8639114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! A command-line frontend for Sequoia.
//!
//! # Usage
//!
//! ```text
//! sqv is a command-line OpenPGP signature verification tool.
//!
//! USAGE:
//!     sqv [FLAGS] [OPTIONS] <SIG-FILE> <FILE> --keyring <FILE>...
//!
//! FLAGS:
//!     -h, --help       Prints help information
//!         --trace      Trace execution.
//!     -V, --version    Prints version information
//!
//! OPTIONS:
//!         --keyring <FILE>...         A keyring.  Can be given multiple times.
//!         --not-after <TIMESTAMP>     Consider signatures created after TIMESTAMP as invalid.  If a date is given,
//!                                     23:59:59 is used for the time.
//!                                     [default: now]
//!         --not-before <TIMESTAMP>    Consider signatures created before TIMESTAMP as invalid.  If a date is given,
//!                                     00:00:00 is used for the time.
//!                                     [default: no constraint]
//!     -n, --signatures <N>            The number of valid signatures to return success.  Default: 1
//!
//! ARGS:
//!     <SIG-FILE>    File containing the detached signature.
//!     <FILE>        File to verify.
//!
//! TIMESTAMPs must be given in ISO 9801 format (e.g. '2017-03-04T13:25:35Z', '2017-03-04T13:25', '20170304T1325+0830',
//! '2017-03-04', '2017031', ...). If no timezone is specified, UTC is assumed.
//! ```

include!("sqv.rs");