Posts

Showing posts with the label derive

Stateless password keychains

There are several solutions to saving you from the hassle of having to remember a multitude of passwords. One common way is to install a password manager . These store your randomly generated or manually created passwords in an encrypted manner. You need to devise a method to synchronize these passwords between your devices. A different approach to this problem is to generate all your passwords in a deterministic manner on the fly without saving any state. This spares you from the pains of synchronization and potentially losing all your passwords in case your vault gets damaged. Here are a few of these: https://github.com/waldyrious/hash-my-pass/ http://plevyak.com/dpg.html https://passwordmaker.org/ (old site: http://passwordmaker.sourceforge.net/ ) http://angel.net/~nic/passwd.sha1.html Of course, both methods require using a really strong master password that you can learn by heart.  My personal recommendation is to use at least two separate vaults with diffe...