aboutsummaryrefslogtreecommitdiff
path: root/docs/reverse_mode_crypto.md
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-09-16 14:11:15 +0200
committerJakob Unterwurzacher2017-09-16 14:11:15 +0200
commit5dd5895e2355571d26655957b52b39f69e43c77d (patch)
treee54194f3d6981f044c171ec5260d9787192830aa /docs/reverse_mode_crypto.md
parent245d9b9dd22aa4c167cff6bd9f1dd2a9c88085ae (diff)
Rename "Security" to "Cryptography"
Diffstat (limited to 'docs/reverse_mode_crypto.md')
-rw-r--r--docs/reverse_mode_crypto.md59
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/reverse_mode_crypto.md b/docs/reverse_mode_crypto.md
new file mode 100644
index 0000000..b92cf40
--- /dev/null
+++ b/docs/reverse_mode_crypto.md
@@ -0,0 +1,59 @@
+Reverse Mode
+============
+
+In **reverse mode**, gocryptfs provides an encrypted view of a
+plain-text directory. The primary use-case are encrypted backups.
+
+To make reverse mode useful, it uses deterministic encryption using
+AES-SIV instead of AES-GCM.
+
+The differences with respect to the "normal" (forward) mode as detailed
+on the [Security](security) page are listed below.
+
+File Contents
+-------------
+
+File contents are encrypted using AES-SIV-512 (RFC5297). The 512-bit
+AES-SIV key is derived from the 256-bit master key by hashing it with
+SHA512.
+
+All values that are random in forward mode (File ID, Block IV)
+are instead deterministically derived from the encrypted path,
+essentially using a salted hash (detailed in the section "derivePathIV").
+As all derived values are explicitely stored in the ciphertext file,
+decryption does not depend on knowledge of the derivation.
+
+The encryption process is shown in the diagram below.
+
+![](img/reverse-file-content-encryption.svg)
+
+Notes:
+
+1. The IV is passed to AES-SIV as described in section 3 of RFC5297
+2. The block number N is contained in the IV as well as in the AAD.
+ Either one or the other would suffice, but this construction simplifies
+ the decryption process by keeping it identical to forward mode.
+ The "duplication" is considered to not have
+ any security impact because S2V (RFC5297 section 2.4) hashes IV and
+ AAD independently before XORing them together.
+
+File Names
+----------
+
+File name encryption is identical to forward mode, with the exception
+that the directory IV (stored in `gocryptfs.diriv`) is not random.
+It is deterministically derived, using derivePathIV, from the encrypted
+path to the directory.
+
+Because the encrypted path to the root directory is "" (the empty string),
+this means that the directory IV in the root directory is always
+`0xa8f7bac432ddc1cb3dc74e684d6ae48b = SHA256("\0DIRIV")`.
+
+derivePathIV: Derive IVs from Encrypted Paths
+----------------------------------------------
+
+derivePathIV concatenates the encrypted path with a null byte and a
+salt string (one of "DIRIV", "FILEID", "BLOCK0IV"). This is
+is hashed with SHA256 and truncated to 128 bits.
+
+![](img/reverse-derivePathIV.svg)