aboutsummaryrefslogtreecommitdiff
path: root/InternalRoutines.h
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2015-05-20 10:32:25 -0700
committerVadim Bendebury <vbendeb@chromium.org>2015-05-20 22:32:05 -0700
commit5679752bf24c21135884e987c4077e2f71848971 (patch)
tree3e680dd91a7af84c45ea1170ee88225bd4ad32c8 /InternalRoutines.h
downloadtpm2-5679752bf24c21135884e987c4077e2f71848971.tar.gz
Initial commit to seed TPM2.0 source code directory
LICENSE file text copied from TCG library specification. README describes the procedure used to extract source code from parts 3 and 4 of the specification. The python scripts and part{34}.txt files will be removed in the following commits. Change-Id: Ie281e6e988481831f33483053455e8aff8f3f75f Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Diffstat (limited to 'InternalRoutines.h')
-rw-r--r--InternalRoutines.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/InternalRoutines.h b/InternalRoutines.h
new file mode 100644
index 0000000..fe8c5f4
--- /dev/null
+++ b/InternalRoutines.h
@@ -0,0 +1,71 @@
+// This file was extracted from the TCG Published
+// Trusted Platform Module Library
+// Part 4: Supporting Routines
+// Family "2.0"
+// Level 00 Revision 01.16
+// October 30, 2014
+
+#ifndef INTERNAL_ROUTINES_H
+#define INTERNAL_ROUTINES_H
+//
+// NULL definition
+//
+#ifndef NULL
+#define NULL (0)
+#endif
+//
+// UNUSED_PARAMETER
+//
+#ifndef UNUSED_PARAMETER
+#define UNUSED_PARAMETER(param) (void)(param);
+#endif
+//
+// Internal data definition
+//
+#include "Global.h"
+#include "VendorString.h"
+//
+// Error Reporting
+//
+#include "TpmError.h"
+//
+// DRTM functions
+//
+#include "_TPM_Hash_Start_fp.h"
+#include "_TPM_Hash_Data_fp.h"
+#include "_TPM_Hash_End_fp.h"
+//
+// Internal subsystem functions
+//
+#include "Object_fp.h"
+#include "Entity_fp.h"
+#include "Session_fp.h"
+#include "Hierarchy_fp.h"
+#include "NV_fp.h"
+#include "PCR_fp.h"
+#include "DA_fp.h"
+#include "TpmFail_fp.h"
+//
+// Internal support functions
+//
+#include "CommandCodeAttributes_fp.h"
+#include "MemoryLib_fp.h"
+#include "marshal_fp.h"
+#include "Time_fp.h"
+#include "Locality_fp.h"
+#include "PP_fp.h"
+#include "CommandAudit_fp.h"
+#include "Manufacture_fp.h"
+#include "Power_fp.h"
+#include "Handle_fp.h"
+#include "Commands_fp.h"
+#include "AlgorithmCap_fp.h"
+#include "PropertyCap_fp.h"
+#include "Bits_fp.h"
+//
+// Internal crypto functions
+//
+#include "Ticket_fp.h"
+#include "CryptUtil_fp.h"
+#include "CryptSelfTest_fp.h"
+#endif