A simple password manager
Go to file
2023-05-08 14:13:10 -04:00
man init 2023-03-28 14:13:44 -04:00
src fix unary operator expected error 2023-04-12 21:15:00 -04:00
config.mk init 2023-03-28 14:13:44 -04:00
LICENSE add license 2023-03-29 17:20:07 -04:00
Makefile fix issues in makefile 2023-03-28 16:49:04 -04:00
README update README 2023-05-08 14:13:10 -04:00

+ pm - a simple password manager

pm is a very simple password manager. It aims to be simple and portable. It creates
entries in a predefined file, containing a password and a name. Those entries can
then be queried by pmsearch, a wrapper script.

Since there is no runtime configuration, ecrypt is extremely fast and secure.

+ Installation

Clone this repository:
	(user)$ git clone https://git.everestlinux.org/EverestLinux/pm

Edit src/config.h and ensure it looks good:
	(user)$ $EDITOR src/config.h

Edit config.mk and adjust any options:
	(user)$ $EDITOR config.mk
Run make:
	(user)$ make
Install:
	(root)# make install

+ Tips

To sync passwords between devices, set up a Git repository and run a cron job to
occasionally sync devices to it.

(!) WARNING - Ensure this repository is visible to ONLY YOU. The best way to ensure
this is to host your own Git server on your network.