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.