LUKS
From Just Solve the File Format Problem
(Difference between revisions)
m (→Links) |
|||
Line 9: | Line 9: | ||
== Identification == | == Identification == | ||
− | A LUKS volume begins with signature bytes | + | A LUKS (v1, at least) volume begins with signature bytes {{magic|'L' 'U' 'K' 'S' 0xBA 0xBE}}. |
== Specifications == | == Specifications == | ||
Line 20: | Line 20: | ||
== Links == | == Links == | ||
* [[Wikipedia:Linux Unified Key Setup|Wikipedia article]] | * [[Wikipedia:Linux Unified Key Setup|Wikipedia article]] | ||
+ | * [https://www.kernel.org/pub/linux/utils/cryptsetup/v2.0/v2.0.0-ReleaseNotes Cryptsetup 2.0.0 Release Notes] - Introduces LUKS2 format |
Revision as of 15:19, 26 December 2017
LUKS (Linux Unified Key Setup) is a general-purpose encrypted disk format. It supports, for example, multiple keys, and the possibility of changing keys without re-encrypting the entire volume. Some Linux distributions support LUKS by default, usingcryptsetup
and related utilities, as if it were an advanced form of dm-crypt.
A LUKS volume begins with a header containing a variety of (unencrypted) information about the encrypted data.
Contents |
Identification
A LUKS (v1, at least) volume begins with signature bytes 'L' 'U' 'K' 'S' 0xBA 0xBE
.
Specifications
Software
Links
- Wikipedia article
- Cryptsetup 2.0.0 Release Notes - Introduces LUKS2 format