pub trait PhraseBuilder: HasEntropy + Debug + Send + Sync {
    fn build_phrase(&self, words: Vec<String>) -> String;
}
Expand description

Something that provides logic to combine a list of passphrase words into a passphrase.

Required Methods

Build the passphrase from the given words, and combine them in one final passphrase.

Implementors