keychain_parser 0.1.2

Parse the output of security(1) dump-keychain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(missing_docs)]
#![forbid(unsafe_code)]
//! Parses the output of the `dump-keychain` command
//! of `security(1)` on MacOS.

mod error;
mod parser;

pub use error::Error;
pub use parser::*;

/// Result type for keychain parser.
pub(crate) type Result<T> = std::result::Result<T, Error>;