prs-lib 0.2.11

Secure, fast & convenient password manager CLI with GPG & git sync
Documentation
1
2
3
4
5
6
7
8
//! Crypto backends.
//!
//! This module groups all crytpo backend implementations.

#[cfg(feature = "backend-gnupg-bin")]
pub mod gnupg_bin;
#[cfg(feature = "backend-gpgme")]
pub mod gpgme;