Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sfat/elixir-passphrase-diceware-generator
Passphrase/password generator using diceware written in Elixir
https://github.com/sfat/elixir-passphrase-diceware-generator
diceware diceware-passphrase-generator elixir password password-generator
Last synced: about 2 months ago
JSON representation
Passphrase/password generator using diceware written in Elixir
- Host: GitHub
- URL: https://github.com/sfat/elixir-passphrase-diceware-generator
- Owner: sfat
- Created: 2019-09-07T17:23:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T19:46:38.000Z (almost 5 years ago)
- Last Synced: 2024-09-22T04:48:23.883Z (3 months ago)
- Topics: diceware, diceware-passphrase-generator, elixir, password, password-generator
- Language: Elixir
- Homepage:
- Size: 109 KB
- Stars: 8
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elixir Passphrase Diceware Generator
[![Build Status](https://travis-ci.com/sfat/elixir-passphrase-diceware-generator.svg?branch=master)](https://travis-ci.com/sfat/elixir-passphrase-diceware-generator)
[![codecov](https://codecov.io/gh/sfat/elixir-passphrase-diceware-generator/branch/master/graph/badge.svg)](https://codecov.io/gh/sfat/elixir-passphrase-diceware-generator)
Passphrase generator based on [Diceware](http://world.std.com/~reinhold/diceware.html) technique
This project is split into 3 parts (apps):
1. library
2. cli
3. api## 1. Library
This the core of the passphrase generator.
Based on the `apps/library/priv/eff_large_wordlist.txt`, where we have the map of numbers and words,
we will simulate the dice generation before choosing a word.The library can be included as a dependency in your own Elixir project.
## 2. CLI
Component that makes use of the library and will make an executable that can be used to generate a passphrase
directly from the command line.You can find more info regarding the CLI [here](apps/cli/README.md)
## 3. API
Component will create a REST API that will expose and let you generate a passphrase from your favorite
REST client (a GUI or programmatically)