openssl.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. <sect1 id="ch-system-openssl" role="wrap">
  8. <?dbhtml filename="openssl.html"?>
  9. <sect1info condition="script">
  10. <productname>openssl</productname>
  11. <productnumber>&openssl-version;</productnumber>
  12. <address>&openssl-url;</address>
  13. </sect1info>
  14. <title>OpenSSL-&openssl-version;</title>
  15. <indexterm zone="ch-system-openssl">
  16. <primary sortas="a-OpenSSL">OpenSSL</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The OpenSSL package contains management tools and libraries relating
  21. to cryptography. These are useful for providing cryptographic functions
  22. to other packages, such as OpenSSH, email applications and web browsers
  23. (for accessing HTTPS sites). </para>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&openssl-ch6-sbu;</seg>
  29. <seg>&openssl-ch6-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of OpenSSL</title>
  35. <para>Prepare OpenSSL for compilation:</para>
  36. <screen><userinput remap="configure">./config --prefix=/usr \
  37. --openssldir=/etc/ssl \
  38. --libdir=lib \
  39. shared \
  40. zlib-dynamic</userinput></screen>
  41. <para>Compile the package:</para>
  42. <screen><userinput remap="make">make</userinput></screen>
  43. <para>To test the results, issue:</para>
  44. <screen><userinput remap="test">make test</userinput></screen>
  45. <para>Install the package:</para>
  46. <screen><userinput remap="install">sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
  47. make MANSUFFIX=ssl install</userinput></screen>
  48. <para>If desired, install the documentation:</para>
  49. <screen><userinput remap="install">mv -v /usr/share/doc/openssl /usr/share/doc/openssl-&openssl-version;
  50. cp -vfr doc/* /usr/share/doc/openssl-&openssl-version;</userinput></screen>
  51. </sect2>
  52. <sect2 id="contents-openssl" role="content">
  53. <title>Contents of OpenSSL</title>
  54. <segmentedlist>
  55. <segtitle>Installed programs</segtitle>
  56. <segtitle>Installed libraries</segtitle>
  57. <segtitle>Installed directories</segtitle>
  58. <seglistitem>
  59. <seg>
  60. c_rehash and openssl
  61. </seg>
  62. <seg>
  63. libcrypto.{so,a} and libssl.{so,a}
  64. </seg>
  65. <seg>
  66. /etc/ssl,
  67. /usr/include/openssl,
  68. /usr/lib/engines and
  69. /usr/share/doc/openssl-&openssl-version;
  70. </seg>
  71. </seglistitem>
  72. </segmentedlist>
  73. <variablelist>
  74. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  75. <?dbfo list-presentation="list"?>
  76. <?dbhtml list-presentation="table"?>
  77. <varlistentry id="c_rehash">
  78. <term><command>c_rehash</command></term>
  79. <listitem>
  80. <para>
  81. is a <application>Perl</application> script that scans all files in
  82. a directory and adds symbolic links to their hash values.
  83. </para>
  84. <indexterm zone="ch-system-openssl c_rehash">
  85. <primary sortas="b-c_rehash">c_rehash</primary>
  86. </indexterm>
  87. </listitem>
  88. </varlistentry>
  89. <varlistentry id="openssl-prog">
  90. <term><command>openssl</command></term>
  91. <listitem>
  92. <para>
  93. is a command-line tool for using the various cryptography functions
  94. of <application>OpenSSL</application>'s crypto library from the
  95. shell. It can be used for various functions which are documented in
  96. <command>man 1 openssl</command>.
  97. </para>
  98. <indexterm zone="ch-system-openssl openssl-prog">
  99. <primary sortas="b-openssl">openssl</primary>
  100. </indexterm>
  101. </listitem>
  102. </varlistentry>
  103. <varlistentry id="libcrypto">
  104. <term><filename class="libraryfile">libcrypto.so</filename></term>
  105. <listitem>
  106. <para>
  107. implements a wide range of cryptographic algorithms used in various
  108. Internet standards. The services provided by this library are used
  109. by the <application>OpenSSL</application> implementations of SSL,
  110. TLS and S/MIME, and they have also been used to implement
  111. <application>OpenSSH</application>,
  112. <application>OpenPGP</application>, and other cryptographic
  113. standards.
  114. </para>
  115. <indexterm zone="ch-system-openssl libcrypto">
  116. <primary sortas="c-libcrypto">libcrypto.so</primary>
  117. </indexterm>
  118. </listitem>
  119. </varlistentry>
  120. <varlistentry id="libssl">
  121. <term><filename class="libraryfile">libssl.so</filename></term>
  122. <listitem>
  123. <para>
  124. implements the Transport Layer Security (TLS v1) protocol.
  125. It provides a rich API, documentation
  126. on which can be found by running <command>man 3 ssl</command>.
  127. </para>
  128. <indexterm zone="ch-system-openssl libssl">
  129. <primary sortas="c-libssl">libssl.so</primary>
  130. </indexterm>
  131. </listitem>
  132. </varlistentry>
  133. </variablelist>
  134. </sect2>
  135. </sect1>