{
"info": {
"author": "Uli Fouquet",
"author_email": "uli@gnufix.de",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
],
"description": "diceware\n========\n\nPassphrases to remember...\n\n|bdg-build| | `documentation `_ | `sources `_ | `issues `_\n\n.. |bdg-build| image:: https://travis-ci.org/ulif/diceware.png?branch=master\n :target: https://travis-ci.org/ulif/diceware\n :alt: Build Status\n\n.. |bdg-last-release| image:: https://img.shields.io/pypi/v/diceware.svg\n :target: https://pypi.python.org/pypi/diceware/\n :alt: Latest Release\n\n.. |bdg-versions| image:: https://img.shields.io/pypi/pyversions/diceware.svg\n :target: https://pypi.python.org/pypi/diceware/\n :alt: Supported Python Versions\n\n.. |bdg-license| image:: https://img.shields.io/pypi/l/diceware.svg\n :target: https://pypi.python.org/pypi/diceware/\n :alt: License\n\n.. |doc-status| image:: https://readthedocs.io/projects/diceware/badge/?version=latest\n :target: https://diceware.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n`diceware` is a passphrase generator following the proposals of\nArnold G. Reinhold on http://diceware.com . It generates passphrases\nby concatenating words randomly picked from wordlists. For instance::\n\n $ diceware\n MyraPend93rdSixthEagleAid\n\nThe passphrase contains by default six words (with first char\ncapitalized) without any separator chars. Optionally you can let\n`diceware` insert special chars into the passphrase.\n\n`diceware` supports several sources of randomness (including real life\ndice) and different wordlists (including cryptographically signed\nones).\n\n.. contents::\n\n\nInstall\n-------\n\nThis Python package can be installed via pip_::\n\n $ pip install diceware\n\nThe exact way depends on your operating system.\n\n\nUsage\n-----\n\nOnce installed, use ``--help`` to list all available options::\n\n $ diceware --help\n Create a passphrase\n\n positional arguments:\n INFILE Input wordlist. `-' will read from stdin.\n\n optional arguments:\n -h, --help show this help message and exit\n -n NUM, --num NUM number of words to concatenate. Default: 6\n -c, --caps Capitalize words. This is the default.\n --no-caps Turn off capitalization.\n -s NUM, --specials NUM\n Insert NUM special chars into generated word.\n -d DELIMITER, --delimiter DELIMITER\n Separate words by DELIMITER. Empty string by default.\n -r SOURCE, --randomsource SOURCE\n Get randomness from this source. Possible values:\n `realdice', `system'. Default: system\n -w NAME, --wordlist NAME\n Use words from this wordlist. Possible values: `en',\n `en_eff', `en_orig', `en_securedrop'. Wordlists are\n stored in the folder displayed below. Default: en_eff\n -v, --verbose Be verbose. Use several times for increased verbosity.\n --version output version information and exit.\n\n Arguments related to `realdice' randomsource:\n --dice-sides N Number of sides of dice. Default: 6\n\n Wordlists are stored in \n\nWith ``-n`` you can tell how many words are supposed to be picked for\nyour new passphrase::\n\n $ diceware -n 1\n Thud\n\n $ diceware -n 2\n KnitMargo\n\nYou can `diceware` additionally let generate special chars to replace\ncharacters in the 'normal' passphrase. The number of special chars\ngenerated can be determined with the ``-s`` option (*default is zero*)::\n\n $ diceware -s 2\n Heroic%unkLon#DmLewJohns\n\nHere ``\"%\"`` and ``\"#\"`` are the special chars.\n\nSpecial chars are taken from the following list::\n\n ~!#$%^&*()-=+[]\\{}:;\\\"'<>?/0123456789\n\nPlease note that several special chars might replace the same original\nchar, resulting in a passphrase with less special chars than requested.\n\nWith ``-d`` you can advise `diceware` to put a delimiter string\nbetween the words generated::\n\n $ diceware -d \"_\"\n Wavy_Baden_400_Whelp_Quest_Macon\n\nBy default we use the empty string as delimiter, which is good for\ncopying via double click on Linux systems. But other delimiters might\nmake your passphrases more readable (and more secure, see\n`Security Traps <#sec-traps>`_ below).\n\nBy default the single phrase words are capitalized, i.e. the first\nchar of each word is made uppercase. This does not neccessarily give\nbetter entropy (but protects against entropy loss due to non `prefix\ncode`_, see `Security Traps <#sec-traps>`_ below), and it might\nimprove phrase readability.\n\nYou can nevertheless disable caps with the ``--no-caps`` option::\n\n $ diceware --no-caps\n oceanblendbaronferrylistenvalet\n\nThis will leave the input words untouched (upper-case stays upper-case,\nlower-case stays lower-case). It does *not* mean, that all output words will be\nlower-case (except if all words of your wordlist are lowercase).\n\nAs the default lists of `diceware` contain only lower-case terms, here\n``--no-caps`` means in fact lower-case only output, which might be easier to\ntype on smart phones and similar.\n\n`diceware` supports also different sources of randomness, which can be\nchosen with the ``-r `` or ``--randomsource ``\noption. Use the ``--help`` option to list all valid values for this\noption.\n\nBy default we use the `random.SystemRandom`_ class of standard Python\nlib but you can also bring your own dice to create randomness::\n\n $ diceware -r realdice --dice-sides 6\n Please roll 5 dice (or a single dice 5 times).\n What number shows dice number 1? 2\n What number shows dice number 2? 3\n ...\n DogmaAnyShrikeSageSableHoar\n\nNormally dice have six sides. And this is also the default in\n`diceware` if you do not use ``--dice-sides``. But if you do, you can\ntell how many sides (all) your dice have. More sides will lead to less\nrolls required.\n\nWe support even sources of randomness from other packages. See the\n`documentation `_ for more details.\n\n`diceware` comes with an English wordlist provided by the EFF_, which will be\nused by default and contains 7776 (=6^5) different words. This list is\nregistered as ``en_eff``.\n\nAdditionally `diceware` comes with an English wordlist provided by\n`@heartsucker`_, which contains 8192 different words. This list is based off\nthe original diceware list written by Arnold G. Reinhold.\n\nBoth the original and 8k diceware wordlists by Mr. Reinhold are provided.\nYou can enable a certain (installed) wordlist with the ``-w`` option::\n\n $ diceware --wordlist en_orig\n YorkNodePrickEchoToriNiobe\n\nSee ``diceware --help`` for a list of all installed wordlists.\n\nIf you do not like the wordlists provided, you can use your own\none. Any `INFILE` provided will be parsed line by line and each line\nconsidered a possible word. For instance::\n\n $ echo -e \"hi\\nhello\\n\" > mywordlist.txt\n $ diceware mywordlist.txt\n HelloHelloHiHiHiHello\n\nWith dash (``-``) as filename you can pipe in wordlists::\n\n $ echo -e \"hi\\nhello\\n\" | diceware -\n HiHiHelloHiHiHello\n\nIn custom wordlists we take each line for a valid word and ignore\nempty lines (i.e. lines containing whitespace characters only). Oh,\nand we handle even PGP-signed wordlists.\n\nYou can set customized default values in a configuration file\n``.diceware.ini`` (note the leading dot) placed in your home\ndirectory. This file could look like this::\n\n [diceware]\n num = 7\n caps = off\n specials = 2\n delimiter = \"MYDELIMITER\"\n randomsource = \"system\"\n wordlist = \"en_securedrop\"\n\nThe options names have to match long argument names, as output by\n``--help``. The values set must meet the requirements valid for\ncommandline usage. All options must be set within a section\n``[diceware]``.\n\n\nWhat is it good for?\n--------------------\n\nNormally, `diceware` passphrases are easier to remember than shorter\npasswords constructed in more or less bizarre ways. But at the same\ntime `diceware` passphrases provide more entropy as `xkcd`_ can show\nwith the famous '936' proof_:\n\n.. image:: http://imgs.xkcd.com/comics/password_strength.png\n :align: center\n :target: http://xkcd.com/936/\n\n.. _xkcd: http://xkcd.com/\n.. _proof: http://xkcd.com/936/\n\nThe standard english wordlist of this `diceware` implementation contains 7776 =\n6^5 different english words. It is the official EFF_ wordlist. compiled by\n`Joseph Bonneau`_. Therefore, picking a random word from this list gives an\nentropy of nearly 12.9 bits. Picking six words means an entropy of 6 x 12.9 =\n77.54 bits.\n\nThe special chars replacing chars of the originally created passphrase\ngive some more entropy (the more chars you have, the more additional\nentropy), but not much. For instance, for a sixteen chars phrase you\nhave sixteen possibilities to place one of the 36 special chars. That\nmakes 36 x 16 possibilitities or an entropy of about 9.17 you can add.\nTo get an entropy increase of at least 10 bits, you have to put a\nspecial char in a phrase with at least 29 chars (while at the same\ntime an additional word would give you 13 bits of extra\nentropy). Therefore you might think again about using special chars in\nyour passphrase.\n\n\nIs it secure?\n-------------\n\nThe security level provided by Diceware_ depends heavily on your\nsource of random. If the delivered randomness is good, then your\npassphrases will be very strong. If instead someone can foresee the\nnumbers generated by a random number generator, your passphrases will\nbe surprisingly weak.\n\nThis Python implementation uses (by default) the\n`random.SystemRandom`_ source provided by Python. On Un*x systems it\naccesses `/dev/urandom`. You might want to follow reports about\nmanipulated random number generators in operating systems closely.\n\nThe Python API of this package allows usage of other sources of\nrandomness when generating passphrases. This includes real dice. See\nthe ``-r`` option.\n\n\n.. _sec-traps:\n\nSecurity Traps\n--------------\n\nThere are issues that might reduce the entropy of the passphrase\ngenerated. One of them is the `prefix code`_ problem:\n\n\nPrefix Code\n...........\n\nIf the wordlist contains, for example, the words::\n\n \"air\", \"airport\", \"portable\", \"able\"\n\n*and* we switched off caps *and* delimiter chars, then `diceware` might\ngenerate a passphrase containing::\n\n \"airportable\"\n\nwhich could come from ``air-portable`` or ``airport-able``. We cannot\ntell and an attacker would have less combinations to guess.\n\nTo avoid that, you can leave caps enabled (the default), use any word\ndelimiter except the empty string or use the ``en_eff`` wordlist,\nwhich was checked to be a `prefix code`_ (i.e. it does not contain\nwords that start with other words in the list).\n\nEach of these measures is sufficient to protect you against the\n`prefix code`_ problem.\n\n\nReduced Entropy\n...............\n\nOverall, `diceware` is a kind of mapping input values, dice throws for\ninstance, onto wordlist entries. We normally want each of the words in the\nwordlist to be picked for passphrases with the same probability.\n\nThis, however, is not possible, if the number of wordlist entries is not a\npower of dice sides. In that case we cut some words of the wordlist and inform\nthe user about the matter. Reducing the number of words this way makes it\neasier for attackers to guess the phrase picked.\n\nYou can fix that problem by using longer wordlists.\n\n\nDeveloper Install\n-----------------\n\nDevelopers want to `fork me on github`_::\n\n $ git clone https://github.com/ulif/diceware.git\n\nWe recommend to create and activate a virtualenv_ first::\n\n $ cd diceware/\n $ virtualenv -p /usr/bin/python3.4 py34\n $ source py34/bin/activate\n (py34) $\n\nWe support Python versions 2.6, 2.7, 3.3 to 3.7, and pypy.\n\nNow you can create the devel environment::\n\n (py34) $ python setup.py dev\n\nThis will fetch test packages (py.test_). You should be able to run\ntests now::\n\n (py34) $ py.test\n\nIf you have also different Python versions installed you can use tox_\nfor using them all for testing::\n\n (py34) $ pip install tox # only once\n (py34) $ tox\n\nShould run tests in all supported Python versions.\n\n\nDocumentation Install\n.....................\n\nThe docs can be generated with Sphinx_. The needed packages are\ninstalled via::\n\n (py34) $ python setup.py docs\n\nTo create HTML you have to go to the ``docs/`` directory and use the\nprepared ``Makefile``::\n\n (py34) $ cd docs/\n (py34) $ make\n\nThis should generate the docs in ``docs/_build/html/``.\n\n\nCreating the Man Page\n.....................\n\nWe provide a `ReStructuredTexT`_ template to create a man page. When the\ndocumentation engine is installed (`Sphinx`_, see above), then you can create a\nmanpage doing::\n\n (py34) $ rst2man.py docs/manpage.rst > diceware.1\n\nThe template is mainly provided to ease the job of Debian maintainers.\nCurrently, it is not automatically updated. Dates, authors, synopsis, etc. have\nto be updated manually. Information in the manpage may therefore be wrong,\noutdated, or simply misleading.\n\n\nCredits\n-------\n\nArnold G. Reinhold deserves all merits for the working parts of\n`Diceware`_. The non-working parts are certainly my fault.\n\nPeople that helped spotting bugs, providing solutions, etc.:\n\n - `Conor Schaefer (conorsch) `_\n - Rodolfo Gouveia suggested to activate the ``--delimiter`` option.\n - `@drebs`_ provided patches and discussion for different sources of\n randomness. `@drebs`_ also initiated and performed the packaging of\n `diceware` for the `Debian`_ platform. Many kudos for this work! `@drebs`_\n is also the official Debian maintainer of the `diceware` package.\n - `@heartsucker`_ hand-compiled and added a new english wordlist.\n - `dwcoder `_ revealed and fixed bugs\n #19, #21, #23. Also showed sound knowledge of (theoretical)\n entropy. A pleasure to work with.\n - `George V. Reilly `_ pointed to new\n EFF wordlists.\n - `lieryan `_ brought up the `prefix\n code`_ problem.\n - `LogosOfJ `_ discovered and fixed\n serious `realdice` source of randomness problem.\n - `Bhavin Gandhi `_ fixed the confusing error\n message when an invalid input filename is given.\n - `Simon Fondrie-Teitler `_ contributed a\n machine-readable copyright file, with improvements from `@anarcat`_\n - `Doug Muth `_ fixed formatting in docs.\n\nMany thanks to all of them!\n\n\nLinks\n-----\n\n- The Diceware_ home page. Reading definitely recommended!\n- `fork me on github`_\n\nWordlists:\n\n- `Diceware standard list`_ by Arnold G. Reinhold.\n- `Diceware8k list`_ by Arnold G. Reinhold.\n- `Diceware SecureDrop list`_ by `@heartsucker`_.\n- `EFF large list`_ provided by EFF_.\n\n\nLicense\n-------\n\nThis Python implementation of Diceware, (C) 2015-2018 Uli Fouquet, is\nlicensed under the GPL v3+. See file LICENSE for details.\n\n\"Diceware\" is a trademark of Arnold G Reinhold, used with permission.\n\nThe copyright for the `Diceware8k list`_ is owned by Arnold G Reinhold.\nThe copyright for the the `Diceware SecureDrop list`_ are owned by\n`@heartsucker`_. Copyright for the `EFF large list`_ by `Joseph Bonneau`_ and\nEFF_. See file COPYRIGHT for details.\n\n.. _pip: https://pip.pypa.io/en/latest/\n.. _`@anarcat`: https://github.com/anarcat\n.. _`Debian`: https://www.debian.org/\n.. _`Diceware`: http://diceware.com/\n.. _`Diceware standard list`: http://world.std.com/~reinhold/diceware.wordlist.asc\n.. _`Diceware SecureDrop list`: https://github.com/heartsucker/diceware\n.. _`Diceware8k list`: http://world.std.com/~reinhold/diceware8k.txt\n.. _`@drebs`: https://github.com/drebs\n.. _`EFF`: https://eff.org/\n.. _`EFF large list`: https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt\n.. _`fork me on github`: http://github.com/ulif/diceware/\n.. _`@heartsucker`: https://github.com/heartsucker/\n.. _`Joseph Bonneau`: https://www.eff.org/about/staff/joseph-bonneau\n.. _`prefix code`: https://en.wikipedia.org/wiki/Prefix_code\n.. _`random.SystemRandom`: https://docs.python.org/3.4/library/random.html#random.SystemRandom\n.. _ReStructuredText: http://docutils.sourceforge.net/rst.html\n.. _virtualenv: https://virtualenv.pypa.io/\n.. _py.test: https://pytest.org/\n.. _tox: https://tox.testrun.org/\n.. _Sphinx: https://sphinx-doc.org/\n\n\n\nChanges\n=======\n\n0.9.6 (2018-12-19)\n------------------\n\n- Officially support Python 3.7.\n- Fixed #51: Fix to formatting of list in Wordlists section. Kudos to `Doug\n Muth `_.\n\n0.9.5 (2018-04-07)\n------------------\n\n- Fixed #28: use Debian-compliant, machine-readable copyright format. Kudos to\n `Simon Fondrie-Teitler `_ and @anarcat.\n- Fixed #48: Clarify trademark status of diceware. Mr. Reinhold granted\n permission to use the name 'Diceware' in this project and under the condtions\n listed in the issue comments. Many thanks to him!\n\n\n0.9.4 (2018-02-27)\n------------------\n\n- Set default logging level to ERROR (was: CRITICAL)\n- Fixed #44: provide a short and readable file-not-found message (many thanks to\n `bhavin192 `_)\n- Fixed #45: clean up logging handlers after test runs.\n- Removed date-dependent tests from default test suite. Run ``py.test -m ''``\n or ``tox`` to run them.\n\n\n0.9.3 (2017-09-14)\n------------------\n\n- Fix broken test.\n\n\n0.9.2 (2017-09-14)\n------------------\n\n- Fixed #33. Make `en_eff` the new default wordlist. This results in slightly\n decreased entropy per word (12.92 bits instead of 13.0), but provides prefix\n code and better memorizable words. Thanks to @anarcat for the suggestion.\n- Fixed #35. Make `realdice` source of randomness provide an equal distribution\n of roll numbers even for sequences shorter than number of dice sides.\n- Added a man page.\n- Support Python 3.6.\n- Import `ConfigParser` instead of `SafeConfigParser` if the latter is an alias\n of the former.\n- Fixed #37. Ensure file descriptors are closed properly.\n- Fixed #38. Get wordlists dir by function (instead of const) to allow\n reproducible builds. Kudos go to @drebs, again.\n\n\n0.9.1 (2016-12-24)\n------------------\n\n- Fixed #32, in docs tell that ``--no-caps`` option does not generate\n lower-case terms.\n- Fixed #31, broken `realdice` source of randomness. `argparse` related bug,\n Bug was discovered and fixed by @LogosOfJ, thanks a lot!\n- Fixed #29. Tell about code prefix problem in README.\n- Activated logging. Using `verbose` will result in additional output.\n\n\n0.9 (2016-09-14)\n----------------\n\n- Added `--dice-sides` option to tell how many sides used dices\n provide.\n- Changed API interface of `get_config_dict()` to allow more flexible\n handling of config files.\n- Support different verbosity levels.\n- Added new wordlist ``en_eff``. It is a 7776-terms list provided by\n the Electronic Frontier Foundation. See\n https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases\n for details. Thanks to `George V. Reilly\n `_ for hinting!\n- Fixed #27. Allow dashes in numbered wordlists. Yet, these looked\n like ``1234 myterm``. We now also accept ``1-2-3-4 myterm``.\n\n\n0.8 (2016-05-07)\n----------------\n\n- Closed #23. @dwcoder provided a fix that allows use of\n whitespace-only values in diceware confg files if they are enclosed\n in quotes.\n- Fixed #21. @dwcoder revealed and fixed (again!). This time `--caps`\n and `--no-caps` settings did not work properly when set in CLI or in\n `.diceware.ini` config file.\n- Shortened real-dice randomness source.\n- Added logger as common interface to send messages to users.\n- New dependency: `sphinx_rtd_theme` for generating docs. This theme\n was formerly a dependency of `Sphinx`.\n\n\n0.7.1 (2016-04-21)\n------------------\n\n- Fixed #19. @dwcoder revealed and fixed a nasty bug in the real-dice\n randomness-source. Thanks a lot!\n\n\n0.7 (2016-04-17)\n----------------\n\n- Added sample ``.diceware.ini``.\n- Added new english wordlist ``en_securedrop``. This is the new\n default list. Thanks to `heartsucker\n `_ who compiled and added the list.\n- Remove support for Python 3.2. Several packages we depend on for testing\n and sandboxing stopped Python 3.2 support. We follow them.\n\n\n0.6.1 (2015-12-15)\n------------------\n\n- Minor doc changes: add separate config file docs.\n- Fix docs: the default wordlist is named ``en``. Some docs were not\n up-to-date in that regard.\n\n\n0.6 (2015-12-15)\n----------------\n\n- Officially support Pyhthon 3.5.\n- Tests do not depend on `pytest-cov`, `pytest-xdist` anymore.\n- Support configuration files. You can set different defaults in a\n file called ``.diceware.ini`` in your home directory.\n- Renamed wordlist ``en_8k`` to ``en`` as it serves as the default\n for english passphrases.\n\n\n0.5 (2015-08-05)\n----------------\n\n- New option ``-r``, ``--randomsource``. We support a pluggable system\n to define alternative sources of randomness. Currently supported\n sources: ``\"system\"`` (to retrieve randomness from standard library,\n default) and ``realdice``, which allows use of real dice.\n- New option ``-w``, ``--wordlist``. We now provide several wordlists\n for users to choose from. Own wordlists could already be fed to\n `diceware` before. By default we still use the 8192 words list from\n http://diceware.com.\n- Rename `SRC_DIR` to `WORDLISTS_DIR` (reflecting what it stands for).\n- Use also flake8 with tox.\n- Pass `options` to `get_passphrase()` instead of a bunch of single args.\n- Output wordlists dir in help output.\n\n\n0.4 (2015-03-30)\n----------------\n\n- Add --delimiter option (thanks to Rodolfo Gouveia).\n\n\n0.3.1 (2015-03-29)\n------------------\n\n- Turned former `diceware` module into a Python package. This is to\n fix `bug #1 Wordlists aren't included during installation\n `_, this time really.\n Wordlists will from now on be stored inside the `diceware` package.\n Again many thanks to `conorsch `_ who\n digged deep into the matter and also came up with a very considerable\n solution.\n- Use readthedocs theme in docs.\n\n\n0.3 (2015-03-28)\n----------------\n\n- Fix `bug #1 Wordlists aren't included during installation\n `_ . Thanks to `conorsch\n `_\n- Add --version option.\n\n\n0.2 (2015-03-27)\n----------------\n\n- Minor documentation changes.\n- Updated copyright infos.\n- Add support for custom wordlists.\n\n\n0.1 (2015-02-18)\n----------------\n\n- Initial release.\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/ulif/diceware/",
"keywords": "diceware password passphrase",
"license": "GPL 3.0",
"maintainer": "",
"maintainer_email": "",
"name": "diceware",
"package_url": "https://pypi.org/project/diceware/",
"platform": "",
"project_url": "https://pypi.org/project/diceware/",
"project_urls": {
"Homepage": "https://github.com/ulif/diceware/"
},
"release_url": "https://pypi.org/project/diceware/0.9.6/",
"requires_dist": null,
"requires_python": "",
"summary": "Passphrases you will remember.",
"version": "0.9.6"
},
"last_serial": 4615075,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "cc711c6af7c4f1d3b04af72aae925c9f",
"sha256": "6a403a434cf3ced8258f1bacb251dcd8bbac9ff7ae876587b033ac95d042ceab"
},
"downloads": -1,
"filename": "diceware-0.1.tar.gz",
"has_sig": false,
"md5_digest": "cc711c6af7c4f1d3b04af72aae925c9f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41782,
"upload_time": "2015-02-18T13:15:56",
"url": "https://files.pythonhosted.org/packages/3a/b5/e56dc2ac06e9a5177ad8032f1bd6647cec8494a3a2856e8ca6bbafcd6e2f/diceware-0.1.tar.gz"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "329e4a0914bcf0d1662d628ffe065ba8",
"sha256": "85bcc241e6d532b2aa503595cd20a92675a062f42d91daad6aa207838177b4b3"
},
"downloads": -1,
"filename": "diceware-0.2.tar.gz",
"has_sig": false,
"md5_digest": "329e4a0914bcf0d1662d628ffe065ba8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43204,
"upload_time": "2015-03-27T09:32:36",
"url": "https://files.pythonhosted.org/packages/26/8b/63d0055f52699455d1a6969c54ab7c04f9a32380cd933aaa9d8409e971c4/diceware-0.2.tar.gz"
}
],
"0.3": [
{
"comment_text": "",
"digests": {
"md5": "7d67bffc1c44539a2e0e4b765cc311be",
"sha256": "b30291f06475b5843517af71d37145f813e8dc18ae957b34ab016bb317989949"
},
"downloads": -1,
"filename": "diceware-0.3.tar.gz",
"has_sig": false,
"md5_digest": "7d67bffc1c44539a2e0e4b765cc311be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43681,
"upload_time": "2015-03-28T18:06:57",
"url": "https://files.pythonhosted.org/packages/41/ac/e0413200daae37fd0effde88ef7b63d1dfe8af7371942daa6dbd28beae67/diceware-0.3.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "bb5bb2309cc1179c7eb236ed01850700",
"sha256": "872911d3e20a54d05f18d9441db32df25826b6b492eb2e61e9403f58b8ccad4f"
},
"downloads": -1,
"filename": "diceware-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "bb5bb2309cc1179c7eb236ed01850700",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43895,
"upload_time": "2015-03-29T19:07:36",
"url": "https://files.pythonhosted.org/packages/f6/d4/193532a291e8b9d60ddf95631f70e3a9ef1626d3db70af1f73819732c237/diceware-0.3.1.tar.gz"
}
],
"0.4": [
{
"comment_text": "",
"digests": {
"md5": "eeed893a8aca0811d98f5fe2213ec86b",
"sha256": "8a7af5b9f6b5a94097eb47c85446b617eac7a4b1769fd630e0bcb661f36663a6"
},
"downloads": -1,
"filename": "diceware-0.4.tar.gz",
"has_sig": false,
"md5_digest": "eeed893a8aca0811d98f5fe2213ec86b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44363,
"upload_time": "2015-03-30T13:59:14",
"url": "https://files.pythonhosted.org/packages/4d/b3/faf7eacc2f823776cfc9360e3ca928c290dc56a1941ecdb453eca55e0aea/diceware-0.4.tar.gz"
}
],
"0.5": [
{
"comment_text": "",
"digests": {
"md5": "43f0e5bd0a7e14fce79f7d4833694fe6",
"sha256": "13445158fa36cc74398b6edbf6106b290f221fdbaccc8391ff4c6a6dfd5be8c2"
},
"downloads": -1,
"filename": "diceware-0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "43f0e5bd0a7e14fce79f7d4833694fe6",
"packagetype": "bdist_wheel",
"python_version": "3.3",
"requires_python": null,
"size": 76593,
"upload_time": "2015-08-05T16:40:10",
"url": "https://files.pythonhosted.org/packages/4d/12/5d89e88d4483ccb63fa8aef097d7772625183b6d8eb5894645e7bd9ecccb/diceware-0.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d3ef8c8e7cfd7d729d25fbc9d8e7d805",
"sha256": "adf9d4d8992ecc8edda40a3418edcc91931926b0e68703cfe4a9596460c24069"
},
"downloads": -1,
"filename": "diceware-0.5.tar.gz",
"has_sig": false,
"md5_digest": "d3ef8c8e7cfd7d729d25fbc9d8e7d805",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 86299,
"upload_time": "2015-08-05T16:38:18",
"url": "https://files.pythonhosted.org/packages/3e/a5/af37f67d73ba6f82c143d0b6114c8290b49a0ca3f000326660850ccbbd62/diceware-0.5.tar.gz"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "b1f50bb8e3a6d4edb0d66a6e4a04fc19",
"sha256": "69772cf3db6e18fee4d1a56d44bb32020eeb672999326efe80e155ad7a23e327"
},
"downloads": -1,
"filename": "diceware-0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b1f50bb8e3a6d4edb0d66a6e4a04fc19",
"packagetype": "bdist_wheel",
"python_version": "3.3",
"requires_python": null,
"size": 98236,
"upload_time": "2015-12-03T00:32:18",
"url": "https://files.pythonhosted.org/packages/53/1c/c169fb8ad2b3b719707b410cf85af511eef1873f92174207d6452dd17767/diceware-0.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "16be22ba558d9ffc4d9e0396dbd4e7fe",
"sha256": "b9cfabfb3ad86bca9b11a5beb744449b6f08fa26682772dae9873285a034ea09"
},
"downloads": -1,
"filename": "diceware-0.6.tar.gz",
"has_sig": false,
"md5_digest": "16be22ba558d9ffc4d9e0396dbd4e7fe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 113795,
"upload_time": "2015-12-03T00:32:11",
"url": "https://files.pythonhosted.org/packages/78/14/a9b3d93557830034a399d2e633417f2e87431f19801a4024ff045a6a63e7/diceware-0.6.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "67bee0241a3bccd0b895f2befe5ac6d4",
"sha256": "5c69df0493fe3d2d940d470c40565adb512a7a40c956c579ef1fcb00b413122a"
},
"downloads": -1,
"filename": "diceware-0.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "67bee0241a3bccd0b895f2befe5ac6d4",
"packagetype": "bdist_wheel",
"python_version": "3.3",
"requires_python": null,
"size": 98437,
"upload_time": "2015-12-03T02:02:14",
"url": "https://files.pythonhosted.org/packages/d9/0f/e5b3e8be55bed4bf1454fcee5cd0632084f0689b4857ccbedd982d00d0c1/diceware-0.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ff972adc5bef31aa92aa3a9b2beeb90d",
"sha256": "d9b3d50ae7fe6510d167bddf9a13579dfa10ff9e8e2fb001e831cc8ff6fc75be"
},
"downloads": -1,
"filename": "diceware-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "ff972adc5bef31aa92aa3a9b2beeb90d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114917,
"upload_time": "2015-12-03T02:02:03",
"url": "https://files.pythonhosted.org/packages/a8/e4/8694cd85f4a64908d3b208e0a9146a09bb50676a557d9cbe68cda9b0a4a0/diceware-0.6.1.tar.gz"
}
],
"0.7": [
{
"comment_text": "",
"digests": {
"md5": "46b58fb658851cf7a1cd1d07b7c1e838",
"sha256": "18cf3d430fc29dbfd3038d1aea83a9ca937d75530058d6d3f6b7de208e2e30fd"
},
"downloads": -1,
"filename": "diceware-0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "46b58fb658851cf7a1cd1d07b7c1e838",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 120807,
"upload_time": "2016-04-17T12:45:40",
"url": "https://files.pythonhosted.org/packages/23/09/5bf644f431211b24076d6404660900eb2484a74a4b159ccc87d10bb15c3d/diceware-0.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "13675c7cdac2f1c58fcb301680fc0939",
"sha256": "369e7e5a572044ed4bffe9c2e7144fee4fc9876f9fa33765d36d65a65630fe99"
},
"downloads": -1,
"filename": "diceware-0.7.tar.gz",
"has_sig": false,
"md5_digest": "13675c7cdac2f1c58fcb301680fc0939",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 137945,
"upload_time": "2016-04-17T12:45:32",
"url": "https://files.pythonhosted.org/packages/a8/1c/291c4473eecd472c73558fc2c7ea2e80575689e2f8f3a50a63a96c4409e1/diceware-0.7.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "a2553518834c4fa32fb960673f94b1cc",
"sha256": "d7d0afef466a43f97cf048a971efbcf5c9cfef529e4c4dbf8d113277891cfbb9"
},
"downloads": -1,
"filename": "diceware-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a2553518834c4fa32fb960673f94b1cc",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 121290,
"upload_time": "2016-04-21T11:29:47",
"url": "https://files.pythonhosted.org/packages/00/3a/0dbabfc195a875ffcd4cd6d56fd32c4ec235a31205a4d1f303fe696f817b/diceware-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "96e389030bd53e29813965585f33c3ef",
"sha256": "c267329dde213e131207daae27f68eb9829ee44aab4c78a3e177f289f4954ef5"
},
"downloads": -1,
"filename": "diceware-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "96e389030bd53e29813965585f33c3ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 138463,
"upload_time": "2016-04-21T11:29:29",
"url": "https://files.pythonhosted.org/packages/b7/a0/2c1f2baed329cec2162fcacf551042270b9b84c3c6f4c56b6cf6b727de99/diceware-0.7.1.tar.gz"
}
],
"0.8": [
{
"comment_text": "",
"digests": {
"md5": "61ca1a0e6ee9d6f62ecd04d248208946",
"sha256": "738f3540226e6bc3b40a5b59abb9a531c8002f852eda925d2c94109e1a23f0bb"
},
"downloads": -1,
"filename": "diceware-0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "61ca1a0e6ee9d6f62ecd04d248208946",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 122696,
"upload_time": "2016-05-07T11:30:58",
"url": "https://files.pythonhosted.org/packages/85/be/407bcf3e1638d0444ee760aec1838498d2c74d9a25a5db0665e725a4ea5c/diceware-0.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "880407c609e5444dc9ef6dcca3127f47",
"sha256": "5e49b4c9e1ead524cd47772403942097ec7c67e6a4c1dae4135ac89cf8570cbe"
},
"downloads": -1,
"filename": "diceware-0.8.tar.gz",
"has_sig": false,
"md5_digest": "880407c609e5444dc9ef6dcca3127f47",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 139931,
"upload_time": "2016-05-07T11:30:50",
"url": "https://files.pythonhosted.org/packages/9c/80/54ba00e4bd9571d84f4c21621538f6e816201759ee43569de886c141705c/diceware-0.8.tar.gz"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "b469ed08e06f12f5f33623dca3d2327b",
"sha256": "10e770cc20743292b879d42602869b2a44c3439b15bd1b04777c67f049086be0"
},
"downloads": -1,
"filename": "diceware-0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b469ed08e06f12f5f33623dca3d2327b",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 167657,
"upload_time": "2016-09-14T21:57:19",
"url": "https://files.pythonhosted.org/packages/2a/90/421df02926780a94e68bffc278bb104fc30abdf5d1c9a504868000234cae/diceware-0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "af18cb293e02d038d191e576d7a212e0",
"sha256": "d0772e1e5268c910653a09acfa79bd2027f2acb1df52203a1ad983aac792715e"
},
"downloads": -1,
"filename": "diceware-0.9.tar.gz",
"has_sig": false,
"md5_digest": "af18cb293e02d038d191e576d7a212e0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 187640,
"upload_time": "2016-09-14T21:57:13",
"url": "https://files.pythonhosted.org/packages/34/fc/3495f888bf67d6a56cebcd753e981749058d87c3ac30326c2b89360e32db/diceware-0.9.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "b1882d06fcb3df5112298409ca056736",
"sha256": "a0a75c0cd6eed1c0d567899eb8de485c065919cf14f4ce8541ed043b8ec5b99f"
},
"downloads": -1,
"filename": "diceware-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "b1882d06fcb3df5112298409ca056736",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189811,
"upload_time": "2016-12-24T11:46:41",
"url": "https://files.pythonhosted.org/packages/27/ab/69a1f848314449af13019bbdb078f3bc56aa1e3d9105ee9c0801d3538a64/diceware-0.9.1.tar.gz"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "966e0b30bf5b066b152648a2ed2f8bdc",
"sha256": "047b22e6a25e38128b19b17302a71c0400fa2c38fb00f42ef741c7e617940343"
},
"downloads": -1,
"filename": "diceware-0.9.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "966e0b30bf5b066b152648a2ed2f8bdc",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 151354,
"upload_time": "2017-09-14T16:25:30",
"url": "https://files.pythonhosted.org/packages/ec/7f/7b8aff85d6f26ba754afbc92b88f18884324d62bee344e4452b7f018a2c4/diceware-0.9.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "42165186eb543cc68bec15f56e994215",
"sha256": "86d4189f0675632db192c734315176439740d6b5ab1463ae5a7a467d4fa1f1d0"
},
"downloads": -1,
"filename": "diceware-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "42165186eb543cc68bec15f56e994215",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 194996,
"upload_time": "2017-09-14T16:25:25",
"url": "https://files.pythonhosted.org/packages/f0/29/27f7cdfcb6ae931584844ca62610a7531d74a86cdef0d26cea1f60588602/diceware-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "0c7149d05a95cd7e273f92935ac6ac5e",
"sha256": "4b7c55ce1bb1431cb3e3db1c3d5cb40800fe88cb7b8e9da55857215aa0545134"
},
"downloads": -1,
"filename": "diceware-0.9.3-py3.5.egg",
"has_sig": false,
"md5_digest": "0c7149d05a95cd7e273f92935ac6ac5e",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": null,
"size": 154761,
"upload_time": "2017-09-14T17:05:28",
"url": "https://files.pythonhosted.org/packages/c1/71/b071d35eb755ab6a7446179035307f891a62b4e04e0423b6593857782182/diceware-0.9.3-py3.5.egg"
},
{
"comment_text": "",
"digests": {
"md5": "377bb9ec34d7eb2f783706ebacb536c3",
"sha256": "b704b7aa5e6992b3cd52d9b0c15e34cea2073a76195139d9ae6de34292c1095c"
},
"downloads": -1,
"filename": "diceware-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "377bb9ec34d7eb2f783706ebacb536c3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 192628,
"upload_time": "2017-09-14T17:05:23",
"url": "https://files.pythonhosted.org/packages/d0/61/e347c1dadf7314d3efb83968dbdd0cb9da28300b11301d8b5999e102e5f9/diceware-0.9.3.tar.gz"
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "1963238f36fa0cb913b85221b2482a88",
"sha256": "46da2e6d02e7c0f78eed027ccc32e620ce67d243a4fa29c75fb823e2f1c0c989"
},
"downloads": -1,
"filename": "diceware-0.9.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1963238f36fa0cb913b85221b2482a88",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 171478,
"upload_time": "2018-02-27T21:27:19",
"url": "https://files.pythonhosted.org/packages/ae/1b/3696c897f75077291065f41ddae97310c6a8948dcb8d05df55afe9f1886d/diceware-0.9.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d169992382e2180d629b2d23afc73222",
"sha256": "c884cec827179527af18f61ee77a21199fcec7e4bdc7c0610b9a9b001bb1a520"
},
"downloads": -1,
"filename": "diceware-0.9.4.tar.gz",
"has_sig": false,
"md5_digest": "d169992382e2180d629b2d23afc73222",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 196654,
"upload_time": "2018-02-27T21:27:14",
"url": "https://files.pythonhosted.org/packages/94/2b/7b7ebdac79de156992cb591607ef03691bc943b316009a7c045660e22245/diceware-0.9.4.tar.gz"
}
],
"0.9.5": [
{
"comment_text": "",
"digests": {
"md5": "fd9b200b11038e4f85038168661cbbc4",
"sha256": "d3225291a44739e7e3b19c7dd450a195ddc675bdcd5c246546ac0995dedc4fb9"
},
"downloads": -1,
"filename": "diceware-0.9.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fd9b200b11038e4f85038168661cbbc4",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 152428,
"upload_time": "2018-04-07T21:07:09",
"url": "https://files.pythonhosted.org/packages/50/42/7e2a1fadcddf0a360454d449c4e63d9e67eb00a57bb347d58fe5064a7d15/diceware-0.9.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6ae7096e15337e3100327c27440a0ba3",
"sha256": "22a998361fd2afbc7890062e228235b3501084de1e6a5bb61f16d2637977f50d"
},
"downloads": -1,
"filename": "diceware-0.9.5.tar.gz",
"has_sig": false,
"md5_digest": "6ae7096e15337e3100327c27440a0ba3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 210773,
"upload_time": "2018-04-07T21:07:06",
"url": "https://files.pythonhosted.org/packages/51/a3/6819c852b94abc35314d4dc89315765e05a1419f7a37e4735e46a6a2ef17/diceware-0.9.5.tar.gz"
}
],
"0.9.6": [
{
"comment_text": "",
"digests": {
"md5": "47b7925a91a27cf3e1163454decd3a97",
"sha256": "60cc4b2a8d75c57ca676e74827382d3255f9161eb18a7bbf7c1f0c61de685001"
},
"downloads": -1,
"filename": "diceware-0.9.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "47b7925a91a27cf3e1163454decd3a97",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 174756,
"upload_time": "2018-12-19T05:01:24",
"url": "https://files.pythonhosted.org/packages/de/9a/9185617b5a4846075f52db38528302754d41935fc9143a4b9d98f2dc91c0/diceware-0.9.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "48f649260c5f41b12931df3aafc3cf1b",
"sha256": "7ef924ca05ece8eaa5e2746246ab94600b831f1428c70d231790fee5b5078b4e"
},
"downloads": -1,
"filename": "diceware-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "48f649260c5f41b12931df3aafc3cf1b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 218492,
"upload_time": "2018-12-19T05:01:17",
"url": "https://files.pythonhosted.org/packages/d7/af/85373be6b11706fa1392e52d7fcd47df47f661e238251c931d469e62c5bf/diceware-0.9.6.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "47b7925a91a27cf3e1163454decd3a97",
"sha256": "60cc4b2a8d75c57ca676e74827382d3255f9161eb18a7bbf7c1f0c61de685001"
},
"downloads": -1,
"filename": "diceware-0.9.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "47b7925a91a27cf3e1163454decd3a97",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 174756,
"upload_time": "2018-12-19T05:01:24",
"url": "https://files.pythonhosted.org/packages/de/9a/9185617b5a4846075f52db38528302754d41935fc9143a4b9d98f2dc91c0/diceware-0.9.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "48f649260c5f41b12931df3aafc3cf1b",
"sha256": "7ef924ca05ece8eaa5e2746246ab94600b831f1428c70d231790fee5b5078b4e"
},
"downloads": -1,
"filename": "diceware-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "48f649260c5f41b12931df3aafc3cf1b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 218492,
"upload_time": "2018-12-19T05:01:17",
"url": "https://files.pythonhosted.org/packages/d7/af/85373be6b11706fa1392e52d7fcd47df47f661e238251c931d469e62c5bf/diceware-0.9.6.tar.gz"
}
]
}