# fn main() -> Result<(), ssh_key::Error> { use ssh_key::{Algorithm, PrivateKey, certificate, getrandom::SysRng, rand_core::UnwrapErr}; use std::time::{SystemTime, UNIX_EPOCH}; // Generate the certificate authority's private key let mut rng = UnwrapErr(SysRng); let ca_key = PrivateKey::random(&mut rng, Algorithm::Ed25519)?; // Generate a "subject" key to be signed by the certificate authority. /
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected