deterministic-pgp-keys 0.3.0

Generate PGP keys from a 12 word seed phrase
//! # rPGP
//!
//! rPGP is an OpenPGP implementation.
//!
//! Usage examples are available under the respective modules:
//! [Key generation], [signing and verifying with external hashing], [packet based signing and verifying].
//!
//! [Key generation]: crate::composed::key
//! [signing and verifying with external hashing]: crate::composed::signed_key
//! [packet based signing and verifying]: crate::packet

#![forbid(unsafe_code)]
#![deny(
    clippy::all,
    clippy::style,
    clippy::perf,
    clippy::complexity,
    clippy::correctness,
    clippy::unwrap_used
)]
#![allow(clippy::missing_const_for_fn, clippy::use_self, dead_code)]

// #[macro_use]
// extern crate nom;
// #[macro_use]
// extern crate num_derive;
// #[macro_use]
// extern crate generic_array;
// #[macro_use]
// extern crate log;
// #[macro_use]
// extern crate derive_builder;
// #[macro_use]
// extern crate bitfield;
// #[macro_use]
// extern crate smallvec;

// #[cfg(test)]
// #[macro_use]
// extern crate pretty_assertions;
//
// public so it can be used in doc test
#[macro_use]
pub mod util;

#[macro_use]
pub mod errors;
pub mod armor;
pub mod base64_decoder;
pub mod base64_reader;
pub mod composed;
pub mod crypto;
pub mod de;
pub mod line_reader;
pub mod line_writer;
pub mod normalize_lines;
pub mod packet;
pub mod ser;
pub mod types;

// reexports for easier use
pub use self::composed::key::*;
pub use self::composed::*;
pub use self::packet::Signature;