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
mod export;
mod generate_key;
mod import;
mod put_key;
mod unwrap_data;
mod wrap_data;

pub(crate) use self::{
    export::*, generate_key::*, import::*, put_key::*, unwrap_data::*, wrap_data::*,
};