mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
06ff66e21b
Added longer dictionary sourced from EFF's list at https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases Also, renamed the app since "Diceware" is a trademark.
14 lines
282 B
C
14 lines
282 B
C
/*! \file phrase.h
|
|
\brief Demo passphrase generator app
|
|
*/
|
|
|
|
//! Enter the passphrase tool.
|
|
void phrase_init();
|
|
//! Exit the passphrase tool.
|
|
int phrase_exit();
|
|
//! Draw the screen
|
|
void phrase_draw();
|
|
|
|
//! Handle a keypress in the phrase application.
|
|
int phrase_keypress(char ch);
|