source: postlfs/security/cryptsetup.xml@ 914049f6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/for-12.3 xry111/intltool xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 914049f6 was bb65a3c, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Update to thunderbird-68.6.0.
Update to git-2.26.0.
Update to glibmm-2.64.2.
Update to ghostscript-9.52.
Update to NetworkManager-1.22.10.
Update to cryptsetup-2.3.1.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@22876 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.7 KB
RevLine 
[6dcb9e77]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
[8dfc5c3]7 <!ENTITY cryptsetup-download-http "&kernel-dl;/linux/utils/cryptsetup/v&cryptsetup-minor;/cryptsetup-&cryptsetup-version;.tar.xz">
[6dcb9e77]8 <!ENTITY cryptsetup-download-ftp " ">
[bb65a3c]9 <!ENTITY cryptsetup-md5sum "cef482c0579f34d9524311ac70c0875f">
[b5dc1cf]10 <!ENTITY cryptsetup-size "11 MB">
11 <!ENTITY cryptsetup-buildsize "29 MB (add 12 MB for tests)">
12 <!ENTITY cryptsetup-time "0.2 SBU (add 15 SBU for tests)">
[6dcb9e77]13]>
14
15<sect1 id="cryptsetup" xreflabel="cryptsetup-&cryptsetup-version;">
16 <?dbhtml filename="cryptsetup.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>cryptsetup-&cryptsetup-version;</title>
24
25 <indexterm zone="cryptsetup">
26 <primary sortas="a-cryptsetup">cryptsetup</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to cryptsetup</title>
31
32 <para>
33 cryptsetup is used to set up transparent encryption of block devices
34 using the kernel crypto API.
35 </para>
36
[90c883f]37 &lfs91_checked;
[6dcb9e77]38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&cryptsetup-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&cryptsetup-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &cryptsetup-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &cryptsetup-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &cryptsetup-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &cryptsetup-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">cryptsetup Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
[6cc2f9a8]77 <xref linkend="json-c"/>,
[82e1be5]78 <xref linkend="libgcrypt"/>,
[6cc2f9a8]79 <xref linkend="lvm2"/>, and
[4509c956]80 <xref linkend="popt"/>
[6dcb9e77]81 </para>
82
83 <bridgehead renderas="sect4">Optional</bridgehead>
84 <para role="optional">
85 <xref linkend="libpwquality"/>,
86 <xref linkend="python2"/>, and
87 <ulink url="http://www.openwall.com/passwdqc/">passwdqc</ulink>
88 </para>
89
90
91 <para condition="html" role="usernotes">User Notes:
92 <ulink url="&blfs-wiki;/cryptsetup"/>
93 </para>
94 </sect2>
95
96 <sect2 role="kernel" id="cryptsetup-kernel">
97 <title>Kernel Configuration</title>
98
99 <para>
[416617d6]100 Encrypted block devices require kernel support. To use it, the
[6dcb9e77]101 appropriate kernel configuration parameters need to be set:
102 </para>
103
104<screen><literal>Device Drivers ---&gt;
105 [*] Multiple devices driver support (RAID and LVM) ---&gt; [CONFIG_MD]
106 &lt;*/M&gt; Device mapper support [CONFIG_BLK_DEV_DM]
107 &lt;*/M&gt; Crypt target support [CONFIG_DM_CRYPT]
108
109Cryptographic API ---&gt;
110 &lt;*/M&gt; XTS support [CONFIG_CRYPTO_XTS]
111 &lt;*/M&gt; SHA224 and SHA256 digest algorithm [CONFIG_CRYPTO_SHA256]
112 &lt;*/M&gt; AES cipher algorithms [CONFIG_CRYPTO_AES]
113 &lt;*/M&gt; AES cipher algorithms (x86_64) [CONFIG_CRYPTO_AES_X86_64]
114 &lt;*/M&gt; User-space interface for symmetric key cipher algorithms
115 [CONFIG_CRYPTO_USER_API_SKCIPHER]
116 For tests:
117 &lt;*/M&gt; Twofish cipher algorithm [CONFIG_CRYPTO_TWOFISH]</literal></screen>
118
119 <indexterm zone="cryptsetup cryptsetup-kernel">
120 <primary sortas="d-cryptsetup">cryptsetup</primary>
121 </indexterm>
122
123 </sect2>
124
125 <sect2 role="installation">
126 <title>Installation of cryptsetup</title>
127
128 <para>
129 Install <application>cryptsetup</application> by running the following
130 commands:
131 </para>
132
[4472f011]133<screen><userinput>./configure --prefix=/usr &amp;&amp;
[6dcb9e77]134make</userinput></screen>
135
136 <para>
137 To test the result, issue as the <systemitem
[9f5dcb97]138 class="username">root</systemitem> user: <command>make check</command>.
139 Some tests may fail if the kernel configuration parameters above are not
[b5dc1cf]140 set. Three (of 21) tests are known to fail.
[6dcb9e77]141 </para>
142
143 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
144
145<screen role="root"><userinput>make install</userinput></screen>
146
147 </sect2>
148
[4472f011]149 <!--sect2 role="commands">
[4509c956]150 <title>Command Explanations</title>
151
[4472f011]152 </sect2-->
[6dcb9e77]153
154 <sect2 role="configuration">
155 <title>Configuring cryptsetup</title>
156
157 <para>
[effdf5be]158 Because of the number of possible configurations, setup of encrypted
159 volumes is beyond the scope of the BLFS book. Please see the
160 configuration guide in the cryptsetup <ulink
161 url="https://gitlab.com/cryptsetup/cryptsetup/wikis/FrequentlyAskedQuestions#2-setup">
162 FAQ</ulink>.
[6dcb9e77]163 </para>
164
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Programs</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directories</segtitle>
174
175 <seglistitem>
176 <seg>
[9f5dcb97]177 cryptsetup,
178 cryptsetup-reencrypt,
179 integritysetup, and
[6dcb9e77]180 veritysetup
181 </seg>
182 <seg>
183 libcryptsetup.so
184 </seg>
185 <seg>
186 None
187 </seg>
188 </seglistitem>
189 </segmentedlist>
190
191 <variablelist>
192 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
193 <?dbfo list-presentation="list"?>
194 <?dbhtml list-presentation="table"?>
195
196 <varlistentry id="cryptsetup-prog">
197 <term><command>cryptsetup</command></term>
198 <listitem>
199 <para>
200 is used to setup dm-crypt managed device-mapper mappings.
201 </para>
202 <indexterm zone="cryptsetup cryptsetup-prog">
203 <primary sortas="b-cryptsetup">cryptsetup</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
[9f5dcb97]208 <varlistentry id="cryptsetup-reencrypt">
209 <term><command>cryptsetup-reencrypt</command></term>
210 <listitem>
211 <para>
212 is a for offline LUKS device re-encryption.
213 </para>
214 <indexterm zone="cryptsetup cryptsetup-reencrypt">
215 <primary sortas="b-cryptsetup-reencrypt">cryptsetup-reencrypt</primary>
216 </indexterm>
217 </listitem>
218 </varlistentry>
219
220 <varlistentry id="integritysetup">
221 <term><command>integritysetup</command></term>
222 <listitem>
223 <para>
224 is a tool to manage dm-integrity (block level integrity) volumes.
225 </para>
226 <indexterm zone="cryptsetup integritysetup">
227 <primary sortas="b-integritysetup">integritysetup</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
[6dcb9e77]232 <varlistentry id="veritysetup">
233 <term><command>veritysetup</command></term>
234 <listitem>
235 <para>
236 is used to configure dm-verity managed device-mapper mappings.
237 Device-mapper verity target provides read-only transparent integrity
238 checking of block devices using kernel crypto API.
239 </para>
240 <indexterm zone="cryptsetup veritysetup">
241 <primary sortas="b-veritysetup">veritysetup</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 </variablelist>
247
248 </sect2>
249
250</sect1>
Note: See TracBrowser for help on using the repository browser.