yubihsm 0.17.3

Pure Rust client for YubiHSM2 devices
Documentation
1
2
3
4
5
6
7
8
9
/// Write consistent `debug!(...) lines for adapter
macro_rules! http_debug {
    ($adapter:expr, $msg:expr) => {
        debug!("yubihsm-connector({}) {}", $adapter.host, $msg);
    };
    ($adapter:expr, $fmt:expr, $($arg:tt)+) => {
        debug!(concat!("yubihsm-connector({}) ", $fmt), $adapter.host, $($arg)+);
    };
}