Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nineinchnick/diceware
Generate passwords using the diceware method and random.org
https://github.com/nineinchnick/diceware
Last synced: 23 days ago
JSON representation
Generate passwords using the diceware method and random.org
- Host: GitHub
- URL: https://github.com/nineinchnick/diceware
- Owner: nineinchnick
- Created: 2013-08-09T10:12:56.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-07T15:16:23.000Z (almost 11 years ago)
- Last Synced: 2024-07-20T01:32:02.048Z (4 months ago)
- Language: Perl
- Size: 224 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Diceware
========A password, passphrase, and pin generator, using the diceware method
## Description
Arnold Reinhold proposed the [Diceware](http://world.std.com/~reinhold/diceware.html) method of generating passphrases: start with a dictionary of 7776 common words and use dice rolls to pick words from that dictionary, to form the phrase.
Using actual dice is preferred, for true security and true randomness. However, I find that tedious and am not quite paranoid enough to go through the effort of doing so. I'm creating these programs, to use the method while taking the grunt work out of the method.
I'm using the [Diceware 8k list](http://world.std.com/%7Ereinhold/dicewarefaq.html#computer), which is optimized for computer selection of words. I'm using [RANDOM.ORG](http://www.random.org) to generate random numbers and simulate dice rolls.
## Fork
This repository has been forked from http://github.com/jmartindf/diceware .
List of modifications:
* Removed all unused code.
* Include support for dictionaries in languages other than english.
* Added namespaces and PSR-0 compatibility.
* Include composer support.