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
1
2
3
4
5
6
7
8
//! Ed25519 digital signature algorithm support

pub(crate) mod commands;
mod public_key;
mod signer;

pub use self::{public_key::PublicKey, signer::Signer};
pub use ::ed25519::Signature;