Skip to main content

uselesskey_ssh/
lib.rs

1#![forbid(unsafe_code)]
2
3//! OpenSSH fixtures built on `uselesskey-core`.
4//!
5//! This crate provides deterministic, cache-backed OpenSSH key and certificate
6//! fixtures for infrastructure and deployment tests.
7
8mod cert;
9mod key;
10mod spec;
11
12pub use cert::{DOMAIN_SSH_CERT, SshCertFactoryExt, SshCertFixture};
13pub use key::{DOMAIN_SSH_KEYPAIR, SshFactoryExt, SshKeyPair};
14pub use spec::{SshCertSpec, SshCertType, SshSpec, SshValidity};