Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 920 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 920 Bytes

Diceware

This is a Python implementation of the Diceware pasword-generating algorithm. It uses uses /dev/urandom or equivalent using calls within Python's random module.

How to use

  1. You may need to set some permissions first.

     $ chmod u+x diceware
    
  2. Run the program:

     $ ./diceware -w n
    

    where n is the number of words you want in your passphrase. The passphrase is printed to the terminal. The -w flag is mandatory, but you may also add -s to add a few random numbers and a random special character to the end of the passphrase in order to satisfy password complexity requirements.

Caveats

I'm not an expert in security or cryptography. If you want this to be more secure, use physical dice (or some other offline method of random number generation) to generate your passphrase the old-skool [sic] way.