nineinchnick/diceware

There is no license information available for the latest version (dev-master) of this package.

Diceware passphrase generator

Installs: 3 080

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 2

Language:Perl

dev-master 2013-12-07 15:16 UTC

This package is not auto-updated.

Last update: 2024-04-22 23:00:12 UTC


README

A password, passphrase, and pin generator, using the diceware method

Description

Arnold Reinhold proposed the Diceware 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, which is optimized for computer selection of words. I'm using 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.