Go to file
Neal H. Walfield a9d419973c
Check that we don't certify our own certificate.
- `sq pki certify` and `sq pki authorize` are for creating
    third-party certifications.

  - Error out if the certifier is the same as the certificate being
    certified.
2024-10-15 12:55:56 +02:00
src Check that we don't certify our own certificate. 2024-10-15 12:55:56 +02:00
subplot Drop serde_json dependency. 2024-09-02 14:47:54 +02:00
tests Check that we don't certify our own certificate. 2024-10-15 12:55:56 +02:00
.gitattributes Add git configuration. 2023-02-23 11:22:01 +01:00
.gitignore Add a framework to format and test examples. 2024-02-09 18:08:09 +01:00
.gitlab-ci.yml ci: Enable subplot tests. 2024-08-15 14:49:01 +02:00
build.rs Only show global options in the top-level help output. 2024-02-21 12:28:32 +01:00
Cargo.lock Update futures-util (and related packages). 2024-10-07 14:07:29 +02:00
Cargo.toml Avoid file descriptor exhaustion when fetching certificates. 2024-09-27 13:34:31 +02:00
Dockerfile Fix Dockerfile. 2024-01-22 12:33:12 +01:00
LICENSE.txt Fix license 2023-11-24 16:37:14 +01:00
NEWS Extend sq pki authorize to constrain by domain. 2024-10-14 17:46:18 +02:00
openpgp-policy.toml add openpgp-policy 2024-03-06 12:35:27 -05:00
README.md Link to the new user documentation. 2024-09-03 17:16:31 +02:00
sq-subplot.md Change sq pki certify to use a named argument for the certificate. 2024-10-14 17:46:12 +02:00
sq.subplot Update to the latest version of subplot 2023-03-17 10:07:17 +01:00

sq, the Sequoia-PGP command line tool

Sequoia-PGP is an implementation of OpenPGP in Rust. It includes a suite of library crates, which are meant to be used from applications. This crate provides the sq command line application. sq is aimed at command line users as a way to use OpenPGP conveniently from the command line.

See the sq user documentation for instructions. The program also has built-in help, using the --help option and help subcommand:

$ sq help
...

You can also browse the manual pages, look at our acceptance criteria, and browse the rustdoc output if you want to learn about the implementation.

Installing

The sq tool can be installed using cargo:

cargo install sequoia-sq

Please see sequoia-openpgp's README for how to install build dependencies on your system.

Building from source

This crate can be built from a source checkout using the standard cargo toolchain:

cargo build

The above creates the sq executable, the manual pages, and its shell completions. By default, the manual pages and shell completions are put into the cargo target directory, but the exact location is unpredictable. To write the assets to a predictable location, set the environment variable ASSET_OUT_DIR to a suitable location.