age-setup 0.1.3

a rust library that creates X25519 key pairs and uses age as its foundation and is very easy to use
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod build;
pub mod errors;
pub mod keypair;
pub mod public_key;
pub mod secret_key;
pub mod security;
pub mod validation;

pub use build::build_keypair;
pub use errors::{Error, GenerationError, Result, SecurityError, ValidationError};
pub use keypair::KeyPair;
pub use public_key::PublicKey;
pub use secret_key::SecretKey;