Crates.io | sequoia-sop |
lib.rs | sequoia-sop |
version | 0.36.0 |
source | src |
created_at | 2020-06-12 13:17:30.038755 |
updated_at | 2024-11-04 19:35:34.508914 |
description | An implementation of the Stateless OpenPGP Interface using Sequoia |
homepage | https://sequoia-pgp.org/ |
repository | https://gitlab.com/sequoia-pgp/sequoia-sop |
max_upload_size | |
id | 253262 |
size | 165,986 |
An implementation of the Stateless OpenPGP Interface using Sequoia.
This implements the Stateless OpenPGP Command Line Interface (SOP) using the Sequoia OpenPGP implementation. This crate implements the Rust SOP interface, as well as providing a command line frontend.
SOP implementations enjoy broad compatibility, see the OpenPGP interoperability test suite.
To build the cli frontend, enable the "cli" feature, e.g. using cargo build --features=cli
or cargo install sequoia-sop --features=cli
.
To build the cli frontend restricted to the verification subset of
SOP, enable the "cliv" feature, e.g. using cargo build --features=cliv
or cargo install sequoia-sop --features=cliv
.
To demonstrate SOP, let's generate a key, and encrypt and decrypt a message:
$ sqop generate-key julia@example.org > julia.secret.pgp
$ sqop extract-cert < julia.secret.pgp > julia.public.pgp
First, we generate a key for julia@example.org
. Next, we extract
the certificate, i.e. the key without the secret key material.
$ echo "a message" | sqop encrypt julia.public.pgp > message.pgp
$ sqop decrypt julia.secret.pgp < message.pgp
a message
Here, we encrypt a message with Julia's certificate, and decrypt it with her key.
Sequoia PGP supports a number of different crypto libraries. In order to select one for use with this crate, disable the default features and explicitly select a backend.
To select an alternate crypto backend when building the cli frontend, for example the OpenSSL backend, do:
$ cargo build --no-default-features --features cli,sequoia-openpgp/compression,sequoia-openpgp/crypto-openssl
Or to install it from crates.io:
$ cargo install sequoia-sop --no-default-features --features cli,sequoia-openpgp/compression,sequoia-openpgp/crypto-openssl
In order to use it from Rust, depend sequoia-openpgp and select a backend, like so:
[dependencies]
sop = { version = "*", default-features = false }
sequoia-openpgp = { version = "*", default-features = false, features = ["compression", "crypto-openssl"] }
By default 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.