Passphrase generator based on diceware made available by the EFF.

René Maya c9fd334d34 "Add checksum for version 0.5.0" 5 anni fa
bin db3cc37b16 Change api for adding expansions to add 6 anni fa
checksum c9fd334d34 "Add checksum for version 0.5.0" 5 anni fa
dev 10f9e93f85 Fix tag task 5 anni fa
lib f6091c0d5d Increase version 5 anni fa
test 611623b15d Remove whitespace from expectation 5 anni fa
.autotest 8eb66729b4 Extract lorca_env env var to minitest config 5 anni fa
.gitignore 5537d42943 Add wip task 5 anni fa
.gitlab-ci.yml 54e364799d Fix CI file 5 anni fa
.ignore.sample 5537d42943 Add wip task 5 anni fa
ChangeLog.md dc7b9c87bc Update ChangeLog 6 anni fa
Gemfile 2957a55ac8 Init lorca 6 anni fa
License.md c90731bd7f Change license file extension for rdoc compatibility 6 anni fa
Manifest.md 006f27103c Add security notes as part of the gem 5 anni fa
Rakefile 8eb66729b4 Extract lorca_env env var to minitest config 5 anni fa
ReadMe.md 387d61f7fb Update installation and update instructions 5 anni fa
Security.md 387d61f7fb Update installation and update instructions 5 anni fa
_expand_lib_path.rb fe7d33ba49 Start cli dev 6 anni fa
lorca.gemspec c87bd03b6a Update bundler 5 anni fa

ReadMe.md

Lorca

Version pipeline status

Details

Lorca is a gem for generating passphrases based on the algorithm originally described in EFF Dice-Generated Passphrases. It uses EFF's long word list. The generator can be used from the command line interface, or added as a library.

Passphrases, unlike passwords, are meant to be memorized. Check out these links for a few ideas on how to memorize them:

Passphrases are great password manager keys.

Quick Start

Command line interface

Generate, and copy to clipboard, an 8-word passphrase.

$ lorca -p

As Lorca is only capable of writing to the clipboard, it's up to the user to paste it, and store it, somewhere safe.

For more details on how to use the CLI

$ lorca

System Requirements

  • *nix OS.
  • xsel or xclip (linux)
  • Ruby 2.4+

Installation

CLI

To use Lorca as a command line interface:

$ gem fetch lorca -v <version>
$ ruby -rdigest/sha2 -e "puts Digest::SHA512.new.hexdigest(File.read('lorca-<version>.gem'))"

Compare it with the hash in checksum/lorca-<version>.gem.sha512 to verify the integrity of the fetched gem. If the checksum matches

$ gem install lorca -v <version>

Gem

To use Lorca as a gem add it to the project's Gemfile:

gem "lorca"

And then run

$ bundle install

For details on the API check out the online documentation.

Updates

Subscribe to the update notification feed. Whenever there's a new release available read the ChangeLog.md for details on what changed since the last release.

CLI

Fetch and verify gem, as above,

$ gem fetch lorca -v <version>
$ ruby -rdigest/sha2 -e "puts Digest::SHA512.new.hexdigest(File.read('lorca-<version>.gem'))"

then

$ gem update lorca
$ gem cleanup lorca

Gem

$ bundle update lorca

License

Copyright (c) 2018-2019, René Maya. Licensed ISC. Read attached License.md file for details.