pub type Result<T> = Result<T, KeyError>;
Result type alias for certificate operations
pub enum Result<T> { Ok(T), Err(KeyError), }
Contains the success value
Contains the error value