-
Notifications
You must be signed in to change notification settings - Fork 74
/
dtfabric.yaml
58 lines (58 loc) · 1.05 KB
/
dtfabric.yaml
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
54
55
56
57
58
name: pff
type: format
description: Personal Folder File (PFF) format
urls:
- 'https://github.com/libyal/libpff/blob/main/documentation/Personal%20Folder%20File%20(PFF)%20format.asciidoc'
metadata:
authors: ['Joachim Metz <[email protected]>']
year: 2008
attributes:
byte_order: little-endian
layout:
- data_type: file_header
---
name: uint8
type: integer
attributes:
format: unsigned
size: 1
units: bytes
---
name: uint16
type: integer
attributes:
format: unsigned
size: 2
units: bytes
---
name: uint32
type: integer
attributes:
format: unsigned
size: 4
units: bytes
---
name: file_header
type: structure
attributes:
byte_order: little-endian
description: File header
members:
- name: signature
data_type: uint32
- name: checksum
data_type: uint32
- name: content_type
data_type: uint16
- name: data_version
data_type: uint16
- name: content_version
data_type: uint16
- name: creation_platform
data_type: uint8
- name: access_platform
data_type: uint8
- name: unknown1
data_type: uint32
- name: unknown2
data_type: uint32