2015-11-10 03:22:03 +00:00
|
|
|
table_name("signature")
|
2016-02-21 21:54:16 +00:00
|
|
|
description("File (executable, bundle, installer, disk) code signing status.")
|
2015-11-10 03:22:03 +00:00
|
|
|
schema([
|
|
|
|
Column("path", TEXT, "Must provide a path or directory", required=True),
|
|
|
|
Column("signed", INTEGER, "1 If the file is signed else 0"),
|
|
|
|
Column("identifier", TEXT, "The signing identifier sealed into the signature"),
|
2016-03-14 07:37:14 +00:00
|
|
|
Column("cdhash", TEXT, "SHA1 hash of the application Code Directory"),
|
|
|
|
Column("team_identifier", TEXT, "The team signing identifier sealed into the signature"),
|
|
|
|
Column("authority", TEXT, "Certificate Common Name"),
|
2015-11-10 03:22:03 +00:00
|
|
|
])
|
|
|
|
implementation("signature@genSignature")
|
|
|
|
examples([
|
|
|
|
"select * from signature where path = '/bin/ls'",
|
|
|
|
])
|