1 2 3 4 5 6 7 8
//! Internal identity generation. use crate::errors::Result; use age::x25519::Identity; pub(crate) fn create_identity() -> Result<Identity> { let identity = Identity::generate(); Ok(identity) }