goodwatch/firmware/apps/phrase.h
ea 06ff66e21b Changes to passphrase generation app
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.
2018-02-12 02:55:33 +01:00

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);