age-crypto 0.2.0

A safe, ergonomic Rust wrapper around the age encryption library with strong typing, comprehensive error handling, and passphrase support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod decrypt;
pub mod decrypt_armor;
pub mod decrypt_with_passphrase;
pub mod decrypt_with_passphrase_armor;
pub mod encrypt;
pub mod encrypt_armor;
pub mod encrypt_with_passphrase;
pub mod encrypt_with_passphrase_armor;
pub(crate) mod parse_identity;
pub(crate) mod parse_recipients;
pub use decrypt::decrypt;
pub use decrypt_armor::decrypt_armor;
pub use decrypt_with_passphrase::decrypt_with_passphrase;
pub use decrypt_with_passphrase_armor::decrypt_with_passphrase_armor;
pub use encrypt::encrypt;
pub use encrypt_armor::encrypt_armor;
pub use encrypt_with_passphrase::encrypt_with_passphrase;
pub use encrypt_with_passphrase_armor::encrypt_with_passphrase_armor;