wecanencrypt 0.2.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
12
13
14
15
mod builder;
mod decrypt;
mod parser;
mod reader;
mod types;

pub use self::{
    builder::{
        Builder as MessageBuilder, DummyReader, Encryption, EncryptionSeipdV1, EncryptionSeipdV2,
        NoEncryption, SubpacketConfig, DEFAULT_PARTIAL_CHUNK_SIZE,
    },
    decrypt::*,
    reader::*,
    types::*,
};