├── .gitignore ├── LICENSE.md ├── README.md ├── passphraseme ├── __init__.py ├── __main__.py └── wordlists │ ├── eff_large_wordlist.txt │ ├── eff_short_wordlist_1.txt │ ├── eff_short_wordlist_2_0.txt │ ├── gameofthrones-2018.txt │ ├── harrypotter-2018.txt │ ├── startrek-2018.txt │ └── starwars-2018.txt ├── scripts ├── calc_passphrase_strength.py └── pypi_release.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/README.md -------------------------------------------------------------------------------- /passphraseme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/__init__.py -------------------------------------------------------------------------------- /passphraseme/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/__main__.py -------------------------------------------------------------------------------- /passphraseme/wordlists/eff_large_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/eff_large_wordlist.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/eff_short_wordlist_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/eff_short_wordlist_1.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/eff_short_wordlist_2_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/eff_short_wordlist_2_0.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/gameofthrones-2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/gameofthrones-2018.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/harrypotter-2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/harrypotter-2018.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/startrek-2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/startrek-2018.txt -------------------------------------------------------------------------------- /passphraseme/wordlists/starwars-2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/passphraseme/wordlists/starwars-2018.txt -------------------------------------------------------------------------------- /scripts/calc_passphrase_strength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/scripts/calc_passphrase_strength.py -------------------------------------------------------------------------------- /scripts/pypi_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/scripts/pypi_release.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/passphraseme/HEAD/setup.py --------------------------------------------------------------------------------