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
//! HSM device-related functionality

pub(crate) mod commands;
mod error;
mod info;
pub(super) mod serial;
pub(super) mod storage;

pub use self::{
    error::{Error, ErrorKind},
    info::Info,
    serial::Number as SerialNumber,
    storage::Info as StorageInfo,
};