1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! This implements a handling of a pass directory compatible with https://www.passwordstore.org/ .
//! The encryption is handled by GPGme and the git integration is with libgit2.

/// This is the library part of ripasso, it implements the functions needed to manipulate a pass
/// directory.
pub mod pass;
/// This is the library that handles password generation, based on the long word list from EFF
/// https://www.eff.org/sv/deeplinks/2016/07/new-wordlists-random-passphrases
pub mod words;

pub(crate) mod error;
pub(crate) mod signature;