-
Notifications
You must be signed in to change notification settings - Fork 1
/
format.dot
53 lines (51 loc) · 1.42 KB
/
format.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
digraph structs {
node
[ shape=record
];
"header"
[ label = "{ magic
| encryption seed
|
{ encrypted
|
{ file table size\l
| directory table size\l
| archive version\l
| header checksum\l
| file table checksum\l
| directory table checksum\l
| format version\l
}
}
}"
, xlabel = "Header"
];
"file table"
[ label = "{ encrypted
}
|
{ name\l
| file size\l
| entry size\l
| ?\l
| parent directory index\l
| ?\l
| compression method\l
| creation time\l
}"
, xlabel = "File table"
];
"directory table"
[ label = "{ encrypted
}
|
{ full path\l
| creation time\l
}"
, xlabel = "Directory table"
];
"file data"
[ label = "File data"
];
"header" -> "file table" -> "directory table" -> "file data";
}