keytool 0.1.0

A command-line tool for managing certificates, similar to Java keytool.
Documentation
1
2
3
4
5
use crate::error::KeyToolError;

pub trait Cmd {
    fn run(&self) -> Result<(), KeyToolError>;
}