sequoia-sop 0.32.0

An implementation of the Stateless OpenPGP Interface using Sequoia
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! An implementation of the Stateless OpenPGP Command Line Interface
//! using Sequoia.
//!
//! This implements a subset of the [Stateless OpenPGP Command Line
//! Interface] using the Sequoia OpenPGP implementation.
//!
//!   [Stateless OpenPGP Command Line Interface]: https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/

use sequoia_sop::SQOP;

fn main() {
    sop::cli::main(&SQOP::default());
}