source: postlfs/security/gnupg2.xml@ 8770a48

systemd-13485
Last change on this file since 8770a48 was 8770a48, checked in by Douglas R. Reno <renodr@…>, 9 years ago

Update to doxygen-1.8.10
Update to OpenJDK-1.8.0.51
Update to check-0.10.0
Fix a build error in Valgrind using glibc-2.22
Update to GnuTLS-3.4.4.1
Update to acpid-2.0.25
Update to cURL-7.44.0
Update to libpng-1.6.18
Update to cmake-3.3.1
Update to harfbuzz-1.0.2
Update to libdrm-2.4.64
Update to Mesa-10.6.4 (will wait for 11.x release for next update)
Update to Linux-PAM-1.2.1
Update to xterm-319
Update to gdk-pixbuf-2.31.6
Update to vala-0.28.1
Update to LVM2-2.02.128
Update to openbox-3.6.1
Update to PIN-Entry-0.9.5
Update to GnuPG-2.1.7
Update to gcr-3.16.0
Fix URL for gsettings-desktop-schemas-3.16.1
Add some short descriptions by Denis.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@16358 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 13.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gnupg2-download-http " ">
8 <!ENTITY gnupg2-download-ftp "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-&gnupg2-version;.tar.bz2">
9 <!ENTITY gnupg2-md5sum "ebdf92b15b8bcd8579b643c7f41a3238">
10 <!ENTITY gnupg2-size "4.7 MB">
11 <!ENTITY gnupg2-buildsize "101 MB (with tests and optional documentation)">
12 <!ENTITY gnupg2-time "1.0 SBU (with tests)">
13]>
14
15<sect1 id="gnupg2" xreflabel="GnuPG-&gnupg2-version;">
16 <?dbhtml filename="gnupg.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GnuPG-&gnupg2-version;</title>
24
25 <indexterm zone="gnupg2">
26 <primary sortas="a-GnuPG">GnuPG</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GnuPG</title>
31
32 <para>
33 The <application>GnuPG</application> package is GNU's tool for secure
34 communication and data storage. It can be used to encrypt data and to
35 create digital signatures. It includes an advanced key management
36 facility and is compliant with the proposed OpenPGP Internet standard
37 as described in RFC2440 and the S/MIME standard as described by several
38 RFCs. GnuPG 2 is the stable version of GnuPG integrating support for
39 OpenPGP and S/MIME.
40 </para>
41
42 &lfs76_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&gnupg2-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&gnupg2-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &gnupg2-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &gnupg2-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &gnupg2-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &gnupg2-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">GnuPG Dependencies</bridgehead>
79
80 <bridgehead renderas="sect4">Required</bridgehead>
81 <para role="required">
82 <xref linkend="libassuan"/>,
83 <xref linkend="libgcrypt"/>,
84 <xref linkend="libksba"/> and
85 <xref linkend="npth"/>
86 </para>
87
88 <bridgehead renderas="sect4">Recommended</bridgehead>
89 <para role="recommended">
90 <xref linkend="pinentry"/> (Run-time requirement for
91 most of the package's functionality)
92 </para>
93
94 <bridgehead renderas="sect4">Optional</bridgehead>
95 <para role="optional">
96 <xref linkend="curl"/>,
97 <ulink url="http://www.chiark.greenend.org.uk/~ian/adns/">GNU
98 ADNS</ulink>,
99 <xref linkend="libusb-compat"/>,
100 an <xref linkend="server-mail"/> and
101 <xref linkend="openldap"/>
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/gnupg2"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of GnuPG</title>
111
112 <para>
113 Install <application>GnuPG</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>./configure --prefix=/usr \
118 --sysconfdir=/etc \
119 --enable-symcryptrun \
120 --docdir=/usr/share/doc/gnupg-&gnupg2-version; &amp;&amp;
121make &amp;&amp;
122
123makeinfo --html --no-split -o doc/gnupg_nochunks.html doc/gnupg.texi &amp;&amp;
124makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi</userinput></screen>
125
126 <para>
127 If you have <xref linkend="texlive"/> installed and you wish
128 to create documentation in alternate formats, issue the
129 following commands:
130 </para>
131
132<screen><userinput>make -C doc pdf ps html</userinput></screen>
133
134 <para>
135 To test the results, issue: <command>make check</command>.
136 </para>
137
138 <para>
139 Now, as the <systemitem class="username">root</systemitem> user:
140 </para>
141
142<screen role="root"><userinput>make install &amp;&amp;
143
144for f in gpg gpgv ; do
145ln -sfv ${f}2 /usr/bin/${f} &amp;&amp;
146ln -sfv ${f}2.1 /usr/share/man/man1/${f}.1
147done &amp;&amp;
148
149install -v -dm755 /usr/share/doc/gnupg-&gnupg2-version;/html &amp;&amp;
150install -v -m644 doc/gnupg_nochunks.html \
151 /usr/share/doc/gnupg-&gnupg2-version;/gnupg.html &amp;&amp;
152install -v -m644 doc/*.texi doc/gnupg.txt \
153 /usr/share/doc/gnupg-&gnupg2-version;</userinput></screen>
154
155 <para>
156 If you created alternate formats of the documentation, install
157 it using the following command as the
158 <systemitem class="username">root</systemitem> user:
159 </para>
160
161<screen role="root"><userinput>install -v -m644 doc/gnupg.html/* \
162 /usr/share/doc/gnupg-&gnupg2-version;/html &amp;&amp;
163install -v -m644 doc/gnupg.{pdf,dvi,ps} \
164 /usr/share/doc/gnupg-&gnupg2-version;</userinput></screen>
165
166 </sect2>
167
168 <sect2 role="commands">
169 <title>Command Explanations</title>
170
171 <para>
172 <parameter>--enable-symcryptrun</parameter>: This switch enables
173 building the symcryptrun program.
174 </para>
175
176 <para>
177 <command>ln -sfv ...</command>: This command creates symlinks for
178 compatibility with the first version of
179 <application>GnuPG</application>.
180 </para>
181
182 </sect2>
183
184 <sect2 role="content">
185 <title>Contents</title>
186
187 <segmentedlist>
188 <segtitle>Installed Programs</segtitle>
189 <segtitle>Installed Libraries</segtitle>
190 <segtitle>Installed Directories</segtitle>
191
192 <seglistitem>
193 <seg>
194 addgnupghome, applygnupgdefaults, dirmngr, dirmngr-client, gpg, gpg2,
195 gpg-agent, gpgconf, gpg-connect-agent, gpgkey2ssh, gpgparsemail,
196 gpgsm, gpgsm-gencert.sh, gpgtar, gpgv, gpgv2, kbxutil,
197 symcryptrun and watchgnupg
198 </seg>
199 <seg>
200 None
201 </seg>
202 <seg>
203 /usr/share/doc/gnupg-&gnupg2-version; and
204 /usr/share/gnupg
205 </seg>
206 </seglistitem>
207 </segmentedlist>
208
209 <variablelist>
210 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
211 <?dbfo list-presentation="list"?>
212 <?dbhtml list-presentation="table"?>
213
214 <varlistentry id="addgnupghome">
215 <term><command>addgnupghome</command></term>
216 <listitem>
217 <para>
218 is used to create and populate user's
219 <filename class="directory">~/.gnupg</filename> directories.
220 </para>
221 <indexterm zone="gnupg2 addgnupghome">
222 <primary sortas="b-addgnupghome">addgnupghome</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="applygnupgdefaults">
228 <term><command>applygnupgdefaults</command></term>
229 <listitem>
230 <para>
231 is a wrapper script used to run <command>gpgconf</command>
232 with the <parameter>--apply-defaults</parameter> parameter
233 on all user's GnuPG home directories.
234 </para>
235 <indexterm zone="gnupg2 applygnupgdefaults">
236 <primary sortas="b-applygnupgdefaults">applygnupgdefaults</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="dirmngr">
242 <term><command>dirmngr</command></term>
243 <listitem>
244 <para> is a tool that takes care of accessing the OpenPGP keyservers.
245 </para>
246 <indexterm zone="gnupg2 dirmngr">
247 <primary sortas="b-dirmngr">dirmngr</primary>
248 </indexterm>
249 </listitem>
250 </varlistentry>
251
252 <varlistentry id="dirmngr-client">
253 <term><command>dirmngr-client</command></term>
254 <listitem>
255 <para> is a tool to contact a running dirmngr and test whether a
256 certificate has been revoked. </para>
257 <indexterm zone="gnupg2 dirmngr-client">
258 <primary sortas="b-dirmngr-client">dirmngr-client</primary>
259 </indexterm>
260 </listitem>
261 </varlistentry>
262
263 <varlistentry id="gpg-agent">
264 <term><command>gpg-agent</command></term>
265 <listitem>
266 <para>
267 is a daemon used to manage secret (private) keys independently
268 from any protocol. It is used as a backend for
269 <command>gpg</command> and <command>gpgsm</command> as well as
270 for a couple of other utilities.
271 </para>
272 <indexterm zone="gnupg2 gpg-agent">
273 <primary sortas="b-gpg-agent">gpg-agent</primary>
274 </indexterm>
275 </listitem>
276 </varlistentry>
277
278 <varlistentry id="gpg-connect-agent">
279 <term><command>gpg-connect-agent</command></term>
280 <listitem>
281 <para>
282 is a utility used to communicate with a running
283 <command>gpg-agent</command>.
284 </para>
285 <indexterm zone="gnupg2 gpg-connect-agent">
286 <primary sortas="b-gpg-connect-agent">gpg-connect-agent</primary>
287 </indexterm>
288 </listitem>
289 </varlistentry>
290
291 <varlistentry id="gpg2">
292 <term><command>gpg2</command></term>
293 <listitem>
294 <para>
295 is the OpenPGP part of the GNU Privacy Guard (GnuPG). It is a
296 tool used to provide digital encryption and signing services
297 using the OpenPGP standard.
298 </para>
299 <indexterm zone="gnupg2 gpg2">
300 <primary sortas="b-gpg2">gpg2</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 <varlistentry id="gpgconf">
306 <term><command>gpgconf</command></term>
307 <listitem>
308 <para>
309 is a utility used to automatically and reasonable safely
310 query and modify configuration files in the
311 <filename class="directory">~/.gnupg</filename> home
312 directory. It is designed not to be invoked manually by
313 the user, but automatically by graphical user interfaces.
314 </para>
315 <indexterm zone="gnupg2 gpgconf">
316 <primary sortas="b-gpgconf">gpgconf</primary>
317 </indexterm>
318 </listitem>
319 </varlistentry>
320
321 <varlistentry id="gpgkey2ssh">
322 <term><command>gpgkey2ssh</command></term>
323 <listitem>
324 <para>is a utility used to get the correctly formated key for
325 ssh usage.</para>
326 <indexterm zone="gnupg2 gpgkey2ssh">
327 <primary sortas="b-gpgkey2ssh">gpgkey2ssh</primary>
328 </indexterm>
329 </listitem>
330 </varlistentry>
331
332 <varlistentry id="gpgparsemail">
333 <term><command>gpgparsemail</command></term>
334 <listitem>
335 <para>
336 is a utility currently only useful for debugging. Run it with
337 <parameter>--help</parameter> for usage information.
338 </para>
339 <indexterm zone="gnupg2 gpgparsemail">
340 <primary sortas="b-gpgparsemail">gpgparsemail</primary>
341 </indexterm>
342 </listitem>
343 </varlistentry>
344
345 <varlistentry id="gpgsm">
346 <term><command>gpgsm</command></term>
347 <listitem>
348 <para>
349 is a tool similar to <command>gpg</command> used to provide digital
350 encryption and signing services on X.509 certificates and the CMS
351 protocol. It is mainly used as a backend for S/MIME mail processing.
352 </para>
353 <indexterm zone="gnupg2 gpgsm">
354 <primary sortas="b-gpgsm">gpgsm</primary>
355 </indexterm>
356 </listitem>
357 </varlistentry>
358
359<!--
360 <varlistentry id="gpgsm-gencert.sh">
361 <term><command>gpgsm-gencert.sh</command></term>
362 <listitem>
363 <para>
364 is a simple tool used to interactively generate a certificate
365 request which will be printed to stdout.
366 </para>
367 <indexterm zone="gnupg2 gpgsm-gencert.sh">
368 <primary sortas="b-gpgsm-gencert.sh">gpgsm-gencert.sh</primary>
369 </indexterm>
370 </listitem>
371 </varlistentry>
372
373-->
374 <varlistentry id="gpgv2">
375 <term><command>gpgv2</command></term>
376 <listitem>
377 <para>
378 is a verify only version of <command>gpg2</command>.
379 </para>
380 <indexterm zone="gnupg2 gpgv2">
381 <primary sortas="b-gpgv2">gpgv2</primary>
382 </indexterm>
383 </listitem>
384 </varlistentry>
385
386 <varlistentry id="kbxutil">
387 <term><command>kbxutil</command></term>
388 <listitem>
389 <para>
390 is used to list, export and import Keybox data.
391 </para>
392 <indexterm zone="gnupg2 kbxutil">
393 <primary sortas="b-kbxutil">kbxutil</primary>
394 </indexterm>
395 </listitem>
396 </varlistentry>
397
398 <varlistentry id="symcryptrun">
399 <term><command>symcryptrun</command></term>
400 <listitem>
401 <para>
402 is a simple symmetric encryption tool.
403 </para>
404 <indexterm zone="gnupg2 symcryptrun">
405 <primary sortas="b-symcryptrun">symcryptrun</primary>
406 </indexterm>
407 </listitem>
408 </varlistentry>
409
410 <varlistentry id="watchgnupg">
411 <term><command>watchgnupg</command></term>
412 <listitem>
413 <para>
414 is used to listen to a Unix Domain socket created by any of
415 the GnuPG tools.
416 </para>
417 <indexterm zone="gnupg2 watchgnupg">
418 <primary sortas="b-watchgnupg">watchgnupg</primary>
419 </indexterm>
420 </listitem>
421 </varlistentry>
422
423 </variablelist>
424
425 </sect2>
426
427</sect1>
Note: See TracBrowser for help on using the repository browser.