Added pwmc.1.
[pwmd.git] / libpwmd / README
blobca1cd2aaa4ec79ab5cb9a3156c8b9287c3ace786
1 This is a library for interfacing with PWMD making it easy to patch
2 applications. Read libpwmd.h for all the details. The file exampleclient.c is
3 a simple client that shows how to use the library.
5 Requirements:
6     
7     glib2        - http://www.gtk.org
8                    Portability library.
10     libassuan    - http://www.gnupg.org
11                    Interface between libpwmd and gpg-agent. Also handles the
12                    connection between gpg-agent and the pinentry program.
14     libgpg-error - http://www.gnupg.org
15                    libassuan returns gpg error codes.
17     gpg-agent    - http://www.gnupg.org
18                    For calling the pinentry program. It does a good job of
19                    error checking the pinentry program. Not really required,
20                    but highly recommended.
22     pinentry     - http://www.gnupg.org/aegypten
23                    There are various interfaces for password entry:
24                    console/curses, X11/GTK2, X11/QT. Not really required but
25                    highly recommended.
27 Debian has packages for all of these. Your distro may have them too.
29 If your having problems with password entry, make sure gpg-agent is running
30 and GPG_AGENT_INFO is set in your environment. Read gpg-agent(1) for more
31 information.
33 The latest version can be found at http://bjk.sourceforge.net/pwmd/.
35 Ben Kibbey <bjk@luxsci.net>