yubihsm 0.42.1

Pure Rust client for YubiHSM2 devices with support for HTTP and USB-based access to the device. Supports most HSM functionality including ECDSA, Ed25519, HMAC, and RSA.
Documentation
//! Secure Shell Certificate Authority Functionality
//!
//! **WARNING**: This functionality has not been tested and has not yet been
//! confirmed to actually work! USE AT YOUR OWN RISK!
//!
//! You will need to enable the `untested` cargo feature to use it.

mod certificate;
#[cfg(feature = "untested")]
pub(crate) mod commands;
mod template;

pub use self::{certificate::Certificate, template::Template};