signstar_yubihsm2/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod automation;
4mod error;
5pub mod object;
6mod signer;
7mod user;
8
9pub use error::Error;
10pub use signer::YubiHsm2SigningKey;
11pub use user::Credentials;
12
13/// Re-exports of the upstream [`yubihsm`] library.
14pub mod yubihsm {
15    pub use yubihsm::Domain;
16    pub use yubihsm::device::SerialNumber;
17}