Warn if gpg cannot be found in the PATH.
[pwmd.git] / README
blob23d2fc02cfc4d89fd89d412625a5f81f017a648f
1 Password Manager Daemon is a server that stores account credentials for any
2 program that needs to store sensitive data. The data is stored on the server
3 in an GnuPG encrypted XML file. Patched programs can connect to the daemon
4 and retrieve the wanted information. There will be a library to interface the
5 daemon shortly.
7 I needed this because I have a few programs that require the same credentials
8 but hate having to update all my data files to reflect any changes in the
9 account. This way, there is a central location for the data.
11 Requirements:
13     glib2     - http://www.gtk.org
14     libxml2   - http://xmlsoft.org
15     gpg       - www.gnupg.org
16     gpg-agent - part of gpg (version 2)
17     pinentry  - www.gnupg.org you'll need this to enter your passwords for the
18                 data file. GnuPG Agent calls this proggy. There are various
19                 interfaces (console/X11/GTK/etc)
21 Debian has packages for all of these. Your distro may have them too.
23 Read PROTOCOL for more information about the protocol. Send patches or ideas
24 to bjk@luxsci.net.
26 Ben Kibbey