source: chapter06/openssl.xml@ 698a753

Last change on this file since 698a753 was c2133bc, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Upgraded to DocBook 4.4 DTD

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4605 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-openssl" role="wrap" arch="raq2">
7<title>OpenSSL-&openssl-version;</title>
8<?dbhtml filename="openssl.html"?>
9
10<indexterm zone="ch-system-openssl"><primary sortas="a-Openssl">Openssl</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The OpenSSL package contains management tools and libraries relating
14to cryptography.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>1.16 SBU</seg><seg>35 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>OpenSSL installation depends on</segtitle>
24<seglistitem><seg>FIXME</seg></seglistitem>
25</segmentedlist>
26
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of OpenSSL</title>
31
32<para>Prepare OpenSSL for compilation:</para>
33
34<screen><userinput>sed 's/^passwd/openssl-passwd/' doc/apps/passwd.pod > doc/apps/openssl-passwd.pod
35rm doc/apps/passwd.pod
36mv doc/crypto/{,openssl_}threads.pod
37./config --openssldir=/etc/ssl --prefix=/usr shared
38sed -i 's%SHLIBDIRS= fips crypto ssl%SHLIBDIRS= crypto ssl%g' Makefile</userinput></screen>
39
40<para>Compile the package:</para>
41
42<screen><userinput>make MANDIR=/usr/share/man</userinput></screen>
43
44<para>Install the package:</para>
45
46<screen><userinput>make MANDIR=/usr/share/man install
47cp -r certs /etc/ssl</userinput></screen>
48
49</sect2>
50
51<sect2 id="contents-openssl" role="content"><title>Contents of OpenSSL</title>
52
53<segmentedlist>
54<segtitle>Installed programs</segtitle>
55<seglistitem><seg>c_rehash, and openssl</seg></seglistitem>
56</segmentedlist>
57
58<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
59<?dbfo list-presentation="list"?>
60
61<varlistentry id="c_rehash">
62<term><command>c_rehash</command></term>
63<listitem>
64<para>A Perl script that scans all files in a directory and adds symbolic links
65to their hash values.</para>
66<indexterm zone="ch-system-openssl c_rehash"><primary sortas="b-c_rehash">c_rehash</primary></indexterm>
67</listitem>
68</varlistentry>
69
70<varlistentry id="openssl">
71<term><command>openssl</command></term>
72<listitem>
73<para> A command-line tool for using the various cryptography
74functions of OpenSSL's crypto library from the shell. It can be used for various
75functions which are documented in man 1 openssl</para>
76<indexterm zone="ch-system-openssl openssl"><primary sortas="b-openssl">openssl</primary></indexterm>
77</listitem>
78</varlistentry>
79
80</variablelist>
81
82</sect2>
83
84</sect1>
Note: See TracBrowser for help on using the repository browser.