/usr/include/tss/tcs_defines.h is in libtspi-dev 0.3.14+fixed1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*++
TSS Core Service structures
*/
#ifndef __TCS_DEFINES_H__
#define __TCS_DEFINES_H__
#define TSS_TCSATTRIB_TRANSPORT_DEFAULT ((UINT32)(0x00000000))
#define TSS_TCSATTRIB_TRANSPORT_EXCLUSIVE ((UINT32)(0x00000001))
// Values for the ulCredentialType parameter to Tcsi_GetCredential
#define TSS_TCS_CREDENTIAL_EKCERT ((UINT32)0x00000001)
#define TSS_TCS_CREDENTIAL_TPM_CC ((UINT32)0x00000002)
#define TSS_TCS_CREDENTIAL_PLATFORMCERT ((UINT32)0x00000003)
// Values for the ulCredentialAccessMode parameter to Tcsi_GetCredential
// TSS_TCS_CERT_ACCESS_AUTO triggers the default behavior.
// Values with TSS_TCS_CERT_VENDOR_SPECIFIC_BIT set trigger
// vendor specific behavior.
#define TSS_TCS_CERT_ACCESS_AUTO ((UINT32)0x00000001)
#define TSS_TCS_CERT_VENDOR_SPECIFIC_BIT ((UINT32)0x80000000)
#endif // __TCS_DEFINES_H__
|