source: chapter06/openssl.xml@ a2d4711a

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

Removed the package name from the dependencies titles.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4691 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>&dependencies;</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<?dbhtml list-presentation="table"?>
61
62<varlistentry id="c_rehash">
63<term><command>c_rehash</command></term>
64<listitem>
65<para>A Perl script that scans all files in a directory and adds symbolic links
66to their hash values.</para>
67<indexterm zone="ch-system-openssl c_rehash"><primary sortas="b-c_rehash">c_rehash</primary></indexterm>
68</listitem>
69</varlistentry>
70
71<varlistentry id="openssl">
72<term><command>openssl</command></term>
73<listitem>
74<para> A command-line tool for using the various cryptography
75functions of OpenSSL's crypto library from the shell. It can be used for various
76functions which are documented in man 1 openssl</para>
77<indexterm zone="ch-system-openssl openssl"><primary sortas="b-openssl">openssl</primary></indexterm>
78</listitem>
79</varlistentry>
80
81</variablelist>
82
83</sect2>
84
85</sect1>
Note: See TracBrowser for help on using the repository browser.