https://github.com/jorol/app-diceware
A simple Diceware passphrase generator
https://github.com/jorol/app-diceware
Last synced: about 2 months ago
JSON representation
A simple Diceware passphrase generator
- Host: GitHub
- URL: https://github.com/jorol/app-diceware
- Owner: jorol
- License: other
- Created: 2018-03-31T10:43:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-31T10:59:47.000Z (about 7 years ago)
- Last Synced: 2025-02-10T10:45:04.576Z (3 months ago)
- Language: Perl
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
App::diceware - A simple Diceware passphrase generator.
[](https://travis-ci.org/jorol/App-diceware)
[](https://coveralls.io/r/jorol/App-diceware?branch=master)
[](http://cpants.cpanauthors.org/dist/App-diceware)
[](http://badge.fury.io/pl/App-diceware)# SYNOPSIS
# via command line
$ diceware.pl
earthlinghandbookspiltunwillingappendage
$ diceware.pl --language en --length 2 --pretty
earthling-handbook# in Perl
use App::diceware;my $diceware = App::diceware->new({language => 'en'});
my $passphrase = diceware->passphrase({length => 5, pretty => 1});# DESCRIPTION
App::diceware is a simple Diceware passphrase generator. It supports English
and German wordlists.# AUTHOR
Johann Rolschewski
# COPYRIGHT
Copyright 2018- Johann Rolschewski
# LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# SEE ALSO
[Diceware](https://en.wikipedia.org/wiki/Diceware)