Skip to content

Commit dc79b76

Browse files
committed
Add FORMAT file.
Describes file format of encrypted journals.
1 parent 54aba22 commit dc79b76

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

FORMAT

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
File Format of Encrypted Journals in Mémoires 4
2+
===============================================
3+
4+
Position Length Description
5+
0 8 Identification string ("MEM_encr")
6+
8 1 Format version (currently 1)
7+
9 1 scrypt log(N)
8+
10 1 scrypt log(r)
9+
11 1 scrypt log(p)
10+
12 32 scrypt salt
11+
44 16 Encryption IV
12+
60 32 Header hash BLAKE2b(0..60)
13+
92 32 Header MAC BLAKE2b(MAC_key, 0..92)
14+
124 * Encrypted content AES-256-CBC(Encryption_key, iv, 124..*)
15+
*-32 32 MAC BLAKE2b(MAC_Key, 0..*-32)
16+
17+
18+
Key derivation:
19+
20+
MAC_key, Encryption_key = scrypt(salt, password, N, r, p, 64)
21+
22+
Length of MAC_key: 32 bytes
23+
Length of Encryption_key: 32 bytes
24+
25+
Hashing and MAC:
26+
27+
Header hash: BLAKE2b with 32-byte output.
28+
Header MAC and content MAC: keyed BLAKE2b with 32-byte output.
29+
30+
Encryption:
31+
32+
AES-256 in CBC mode with randomly generated IV.
33+
PKCS#7 padding.

0 commit comments

Comments
 (0)