Crate codephrases

Source
Expand description

codephrases

Generate easy to memorize codephrases for sharing authentication. The word lists are based off the room name generator for Jitsi Meet.

Note that this library has insufficient entropy for generating passphrases. You probably want diceware for that.

§Example

use codephrases::random_codephrase;

let phrase = random_codephrase();
// "PinkContradictionsYellFast"

Functions§

random_codephrase
Generate a random codephrase.
random_codephrase_from_rng
Generate a random codephrase using the specified RNG.