wecanencrypt 0.1.0

Simple Rust OpenPGP library for encryption, signing, and key management (includes rpgp).
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod encrypted_secret;
pub mod plain_secret;
pub mod public;
pub mod secret;

pub use self::{
    encrypted_secret::*,
    plain_secret::*,
    public::{ecdh::EcdhKdfType, *},
    secret::*,
};