yubikey-cli 0.7.0

Command-line interface for performing encryption and signing using RSA/ECC keys stored on YubiKey devices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `yubikey` command-line utility

#![forbid(unsafe_code)]
#![warn(
    missing_docs,
    rust_2018_idioms,
    unused_lifetimes,
    unused_qualifications
)]

use clap::Parser;
use yubikey_cli::commands::YubiKeyCli;

fn main() {
    YubiKeyCli::parse().run()
}