• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H21-Jan-2021-15,11513,189

curses/H21-Jan-2021-744586

doc/H03-May-2022-10,8969,763

efl/H21-Jan-2021-1,3431,107

emacs/H21-Jan-2021-747587

fltk/H03-May-2022-1,7291,286

gnome3/H21-Jan-2021-1,268999

gtk+-2/H21-Jan-2021-1,7051,323

m4/H21-Jan-2021-1,9511,792

pinentry/H21-Jan-2021-7,1765,399

qt/H03-May-2022-2,2131,710

secmem/H03-May-2022-1,4651,097

tqt/H21-Jan-2021-5,5963,250

tty/H21-Jan-2021-1,3101,040

w32/H03-May-2022-1,5441,125

AUTHORSH A D03-Dec-20171.7 KiB4939

COPYINGH A D13-Jan-201514.8 KiB281237

ChangeLogH A D21-Jan-2021439 1510

ChangeLog-oldH A D20-Dec-201670.3 KiB2,1761,525

INSTALLH A D13-Jan-201511.1 KiB292219

Makefile.amH A D10-Feb-20193.5 KiB143100

Makefile.inH A D21-Jan-202130.4 KiB947827

NEWSH A D21-Jan-202110.2 KiB389219

READMEH A D21-Jan-20213 KiB7258

README.GITH A D13-Jan-20152.2 KiB5040

THANKSH A D13-Jan-2015290 87

TODOH A D13-Jan-2015869 2516

VERSIONH A D21-Jan-20216 21

acinclude.m4H A D13-Jan-20154 KiB118109

aclocal.m4H A D18-Jan-2021116.6 KiB3,1773,001

autogen.rcH A D20-Dec-2016557 2822

autogen.shH A D20-Dec-201612.4 KiB469365

config.h.inH A D18-Jan-20215.7 KiB231156

configureH A D21-Jan-2021394.9 KiB13,57911,430

configure.acH A D27-Dec-202023 KiB807700

depcompH A D13-Jan-201517.4 KiB590375

install-shH A D13-Jan-201513.3 KiB520344

missingH A D13-Jan-201510.9 KiB368275

mkinstalldirsH A D13-Jan-20153.4 KiB162112

README

1PINEntry
2---------
3
4This is a collection of PIN or passphrase entry dialogs which
5utilize the Assuan protocol as specified in the Libassuan manual.
6
7There are programs for different toolkits available.  For all GUIs it
8is automatically detected which modules can be built, but it can also
9be requested explicitly.
10
11GUI		OPTION			 DEPENDENCIES
12--------------------------------------------------------------------------
13GTK+ V2.0	--enable-pinentry-gtk2	 Gimp Toolkit Library, Version 2.0
14					 eg. libgtk-x11-2.0 and libglib-2.0
15GNOME           --enable-pinentry-gnome  GNOME
16Qt		--enable-pinentry-qt	 Qt (> 4.4.0)
17TQt		--enable-pinentry-tqt	 Trinity Qt
18Enlightenment	--enable-pinentry-efl	 EFL (>= 1.18)
19FLTK		--enable-pinentry-fltk	 Fast Light Toolkit (>= 1.3)
20Curses		--enable-pinentry-curses Curses library, for example ncurses
21TTY		--enable-pinentry-tty	 Simple TTY version, no dependencies
22
23The GTK+, GNOME, and Qt pinentries can fall back to curses mode.  The
24option to enable this is --enable-fallback-curses, but this is also
25detected automatically in the same way --enable-pinentry-curses is.
26The fallback to curses also works if --disable-pinentry-curses is
27specified.  So to disable linking to curses completely you have to
28pass --disable-fallback-curses to the configure script as well.
29
30Examples:
31* To only build the GTK+ pinentry with curses support:
32./configure --enable-pinentry-gtk2 --enable-fallback-curses \
33	--disable-pinentry-curses --disable-pinentry-qt
34
35* To build the Qt pinentry, and the other pinentries if they are
36  supported:
37./configure --enable-pinentry-qt
38
39* To build everything that is supported (complete auto-detection):
40./configure
41
42Some of the code is taken from Robert Bihlmeyer's Quintuple-Agent.
43For security reasons, all internationalization has been removed.  The
44client is expected to tell the PIN entry the text strings to be
45displayed.
46
47
48Curses Pinentry
49---------------
50
51The curses pinentry supports colors if the terminal does.  The colors
52can be specified by the --colors=FG,BG,SO option, which sets the
53foreground, background and standout colors respectively.  The standout
54color is used for error messages.  Colors can be named by any of
55"black", "red", "green", "yellow", "blue", "magenta", "cyan" and
56"white".  The foreground and standout color can be prefixed by
57"bright-", "bright", "bold-" and "bold", and any of these prefixes has
58the same effect of making the color bolder or brighter.  Two special
59color names are defined as well: "default" chooses the default color,
60and "none" disables use of colors.  The name "none" is only meaningful
61for the standout color and in this case a reversed effect is used for
62error messages.  For the other colors, disabling colors means the same
63as using the defaults.  The default colors are as follows:
64
65	Foreground:	Terminal default
66	Background:	Terminal default
67	Standout:	Bright red
68
69Note that color support is limited by the capabilities of the display
70terminal.  Some color combinations can be very difficult to read, and
71please know that colors are perceived differently by different people.
72

README.GIT

1If you are building from GIT, run the script
2
3./autogen.sh
4
5first, to make sure that you have all the necessary maintainer tools
6are installed and to build the actual configuration files.  If you
7have just checked out from GIT, you should add the option "--force" to
8autogen.sh so that meta data is noticed by autom4te.cache.  Then run
9
10./configure --enable-maintainer-mode
11
12followed by the usual make.
13
14If autogen.sh complains about insufficient versions of the required
15tools, or the tools are not installed, you may use environment
16variables to override the default tool names:
17
18 AUTOMAKE_SUFFIX  is used as a suffix for all tools from the automake
19                  package.  For example
20                     AUTOMAKE_SUFFIX="-1.7" ./autogen.sh
21                  uses "automake-1.7" and "aclocal-1.7.
22 AUTOMAKE_PREFIX  is used as a prefix for all tools from the automake
23                  page and may be combined with AUTOMAKE_SUFFIX. e.g.:
24                    AUTOMAKE_PREFIX=/usr/foo/bin ./autogen.sh
25                  uses "automake" and "aclocal" in the /usr/foo/bin
26                  directory.
27 AUTOCONF_SUFFIX  is used as a suffix for all tools from the automake
28                  package
29 AUTOCONF_PREFIX  is used as a prefix for all tools from the automake
30                  package
31 GETTEXT_SUFFIX   is used as a suffix for all tools from the gettext
32                  package
33 GETTEXT_PREFIX   is used as a prefix for all tools from the gettext
34                  package
35
36It is also possible to use the variable name AUTOMAKE, AUTOCONF,
37ACLOCAL, AUTOHEADER, GETTEXT and MSGMERGE to directly specify the name
38of the programs to run.  It is however better to use the suffix and
39prefix forms as described above because that does not require
40knowledge about the actual tools used by autogen.sh.
41
42
43Please don't use autopoint, libtoolize or autoreconf unless you are
44the current maintainer and want to update the standard configuration
45files.  All those files should be in GIT and only updated manually
46if the maintainer decides that newer versions are required.  The
47maintainer should also make sure that the required version of automake
48et al. are properly indicated at the top of configure.ac and take care
49to copy the files and not merely use symlinks.
50