Skip to content

antony/nidus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nidus

CircleCI js-standard-style npm

A password store which doesn't store. Instead, it deterministically generates the exact same password for you every time, based on a keyword and your master password.

Keyword can be a website url, an email address, a secret folder name, or anything else you choose.

As long as somebody has the exact same configuration as you (and the master passwords), the generated passwords will always be the same, meaning you can set your logins to use them, and they will never need to be insecurely stored anywhere!

Quickstart

To grab the Nidus GUI for Linux, MacOS and Windows, head over to the releases page

For a cli version:

npm install -g nidus
nidus

Slowstart

On first run, nidus will look for a config file. If not found, it will take you through the steps to generate one, and then exit.

Once your configuration is generated, you can start to generate passwords:

nidus show http://www.example.com
// Simple q15hBZw8mvxkIxW2
// Complex XCCS8w/cq.B:^Hx6
// Readable colors battery blackberry attraction bicycle allegiance

Nidus will show a simple password, a complex password, and a readable password (a number of words). The length of the complex and simple passwords is determined by 'keyLength' in your configuration steps. The length of the readable password (in words, not characters), is determined by 'readableLength' in your configuration steps. You can choose which to use based on restrictions imposed by what the password is used for.

Credits