yubihsm 0.35.0

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! YubiHSM 2 authentication functionality (i.e. credentials used to
//! authenticate and establish a session with an HSM)

mod algorithm;
pub mod commands;
mod credentials;
mod error;
pub mod key;

pub use self::{
    algorithm::Algorithm,
    credentials::*,
    error::{Error, ErrorKind},
    key::Key,
};