forked from Trellis-Logic/secureboot-tegra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luks.txt
55 lines (53 loc) · 1.54 KB
/
luks.txt
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
# https://developer.nvidia.com/embedded/l4t/r32_release_v7.1/sources/t186/public_sources.tbz2
# Expand that:
Linux_for_Tegra/
└── source
└── public
├── ...
├── trusty_src.tbz2
├── trusty_src.tbz2.sha1sum
├── ...
# and then expand Linux_for_Tegra/source/public/trusty_src.tbz2
Linux_for_Tegra/source/public/trusty/app/nvidia-sample/hwkey-agent/CA_sample/
├── hwkey-app.c
├── include
│ └── common.h
├── libtegracrypto
│ ├── include
│ │ ├── tegra-cryptodev.h
│ │ └── tegra-crypto.h
│ ├── local.mk
│ └── tegra-crypto.c
├── libtrusty
│ ├── include
│ │ ├── tipc.h
│ │ └── tipc_ioctl.h
│ ├── local.mk
│ └── trusty.c
├── LICENSE
├── makefile
├── README
└── tool
└── gen_ekb
├── example.sh
├── gen_ekb.py
└── README
Linux_for_Tegra/source/public/trusty/app/nvidia-sample/luks-srv/CA_sample/
├── include
│ ├── common.h
│ └── luks-srv.h
├── libtrusty
│ ├── include
│ │ ├── tipc.h
│ │ └── tipc_ioctl.h
│ ├── local.mk
│ └── trusty.c
├── LICENSE
├── luks-srv-app.c
├── makefile
├── README
└── tool
└── gen_luks_passphrase
├── example.sh
├── gen_luks_passphrase.py
└── README