age-setup 0.1.0

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
//! Key generation error types.

/// Errors that occur during identity generation.
#[derive(Debug, thiserror::Error)]
pub enum GenerationError {
    /// Failed to generate an age identity (internal library issue).
    #[error("Age identity generation failed: internal library error")]
    IdentityCreationFailed,
}