Skip to content

Latest commit

 

History

History

snakeeyes

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

snakeeyes

scratch-based single-binary container image featuring snakeeyes, the command-line passphrase generator

As the site says:

This command-line utility generates random diceware-style passphrases using the EFF's passphrase word lists, including their FANDOM Wikia-based word lists. For reference, the EFF provides detailed instructions for generating passphrases using these word lists with regular dice. This program replaces the table dice with a cryptographically secure pseudorandom number generator: the one from your operating system as proxied by go's crypto/rand package.

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

The following shell function can assist in running this image interactively:

snakeeyes() {
  docker run \
    --rm \
    --interactive \
    --tty \
    "backplane/snakeeyes" \
    "$@"
}