prs-lib 0.5.7

Secure, fast & convenient password manager CLI with GPG & git sync
Documentation
//! Crypto backend using GnuPG for GPG.

pub mod context;
pub mod raw;
mod raw_cmd;

use std::path::PathBuf;

/// GPG config.
pub struct Config {
    /// GPG binary.
    bin: PathBuf,

    /// Use TTY for GPG password input, rather than GUI pinentry.
    pub gpg_tty: bool,

    /// Whether to show verbose output.
    pub verbose: bool,
}

impl Config {
    /// Construct with given binary.
    ///
    /// - `config`: path to `gpg` binary
    pub fn from(bin: PathBuf) -> Self {
        Self {
            bin,
            gpg_tty: false,
            verbose: false,
        }
    }
}