2015-03-30 16:48:54 +00:00
|
|
|
table_name("disk_encryption")
|
2017-05-25 19:43:58 +00:00
|
|
|
description("Disk encryption status and information.")
|
2015-03-30 16:48:54 +00:00
|
|
|
schema([
|
2015-07-16 06:23:42 +00:00
|
|
|
Column("name", TEXT, "Disk name"),
|
|
|
|
Column("uuid", TEXT, "Disk Universally Unique Identifier"),
|
|
|
|
Column("encrypted", INTEGER, "1 If encrypted: true (disk is encrypted), else 0"),
|
2015-04-25 00:01:14 +00:00
|
|
|
Column("type", TEXT, "Description of cipher type and mode if available"),
|
2016-02-10 21:11:29 +00:00
|
|
|
Column("uid", TEXT, "Currently authenticated user if available (Apple)"),
|
|
|
|
Column("user_uuid", TEXT, "UUID of authenticated user if available (Apple)"),
|
2018-07-13 09:59:33 +00:00
|
|
|
Column("encryption_status", TEXT, "Disk encryption status with one of following values: encrypted | not encrypted | undefined"),
|
2015-03-30 16:48:54 +00:00
|
|
|
ForeignKey(column="name", table="block_devices"),
|
|
|
|
ForeignKey(column="uuid", table="block_devices"),
|
|
|
|
])
|
|
|
|
implementation("disk_encryption@genFDEStatus")
|