| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Licensed Materials - Property of IBM | 3 * Licensed Materials - Property of IBM |
| 4 * | 4 * |
| 5 * trousers - An open source TCG Software Stack | 5 * trousers - An open source TCG Software Stack |
| 6 * | 6 * |
| 7 * (C) Copyright International Business Machines Corp. 2004, 2005, 2007 | 7 * (C) Copyright International Business Machines Corp. 2004, 2005, 2007 |
| 8 * | 8 * |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 TPM_KEY_FLAGS keyFlags; | 111 TPM_KEY_FLAGS keyFlags; |
| 112 TPM_AUTH_DATA_USAGE authDataUsage; | 112 TPM_AUTH_DATA_USAGE authDataUsage; |
| 113 TPM_KEY_PARMS algorithmParms; | 113 TPM_KEY_PARMS algorithmParms; |
| 114 UINT32 PCRInfoSize; | 114 UINT32 PCRInfoSize; |
| 115 BYTE *PCRInfo; | 115 BYTE *PCRInfo; |
| 116 TPM_STORE_PUBKEY pubKey; | 116 TPM_STORE_PUBKEY pubKey; |
| 117 UINT32 encSize; | 117 UINT32 encSize; |
| 118 BYTE *encData; | 118 BYTE *encData; |
| 119 } TSS_KEY; | 119 } TSS_KEY; |
| 120 | 120 |
| 121 #if (defined (__linux) || defined (linux)) | 121 #if (defined (__linux) || defined (linux) || defined (SOLARIS) || defined (__GLI
BC__)) |
| 122 #define BSD_CONST | 122 #define BSD_CONST |
| 123 #elif (defined (__OpenBSD__) || defined (__FreeBSD__)) | 123 #elif (defined (__OpenBSD__) || defined (__FreeBSD__)) |
| 124 #define BSD_CONST const | 124 #define BSD_CONST const |
| 125 #endif | 125 #endif |
| 126 | 126 |
| 127 | 127 |
| 128 #endif | 128 #endif |
| OLD | NEW |