• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

Samples/23-Nov-2023-244,580131,306

TPMCmd/23-Nov-2023-109,54963,782

.gitignoreD23-Nov-20235.7 KiB350291

.gitmodulesD23-Nov-2023102 43

.travis.ymlD23-Nov-2023677 3932

Android.bpD23-Nov-20233.7 KiB115109

CONTRIBUTING.mdD23-Nov-20232.1 KiB4330

CppProperties.jsonD23-Nov-2023362 2121

LICENSED23-Nov-20231.6 KiB189

METADATAD23-Nov-2023559 1918

MODULE_LICENSE_BSDD23-Nov-20230

OWNERSD23-Nov-202322 21

README.mdD23-Nov-20234 KiB5327

README.md

1# Official TPM 2.0 Reference Implementation (by Microsoft) #
2
3[![Build Status](https://travis-ci.org/Microsoft/ms-tpm-20-ref.svg?branch=master)](https://travis-ci.org/Microsoft/ms-tpm-20-ref)
4
5This is the official TCG reference implementation of the [TPM 2.0 Specification](https://trustedcomputinggroup.org/tpm-library-specification). The project contains complete source code of the reference implementation with a Microsoft Visual Studio solution and Linux autotools build scripts.
6
7See the definition of the `SPEC_VERSION`, `SPEC_YEAR` and `SPEC_DAY_OF_YEAR` values in the [TpmTypes.h](TPMCmd/tpm/include/TpmTypes.h) header for the exact revision/date of the TPM 2.0 specification, which the given source tree snapshot corresponds to.
8
9The reference implementation can be directly used via the [TPM 2.0 simulator](TPMCmd/Simulator) that emulates a TPM 2.0 device and can be accessed via a custom TCP based protocol. The simplest way to work with the simulator is to use a [TSS library](https://github.com/Microsoft/TSS.MSR) for the programming language of your choice - C#/.Net, C++, Java, Python, JavaScript/Node.js are currently supported. The C language TSS implementing the TCG's TSS API specifiaction is available [here](https://github.com/tpm2-software/tpm2-tss).
10
11## Windows build ##
12
13Windows build is implemented as a Visual Studio 2017 solution. Before building it:
14
15* Setup one or both of the following underlying cryptographic libraries:
16
17   ### OpenSSL library ###
18
19   1. Create `TPMCmd/lib` folder and place a static OpenSSL library (`libcrypto.lib`) built for the `x86` architecture there. For the `x64` architecture use the `TPMCmd/lib/x64` folder.
20
21        The static libs can be either static libraries proper, or import libraries accompanying the corresponding DLLs. In the latter case you'll need to ensure that ther is a matching copy of the OpenSSL DLL in the standard Windows search path, so that it is available when you run the simulator executable (e.g. copy it into the same folder where `simulator.exe` is located).
22
23        Recommended version of OpenSSL is `1.1.1d` or higher.
24
25   2. Create `TPMCmd/OsslInclude/openssl` folder and copy there the contents of the `openssl/include/openssl` folder in the OpenSSL source tree used to build the OpenSSL library.
26
27      If you enable SM{2,3,4} algorithms in `TpmProfile.h`, the build may fail because of missing `SM{2,3,4}.h` headers. In this case you will need to manually copy them over from OpenSSL’s `include/crypt` folder.
28
29   3. Build the solution with either Debug or Release as the active configuration.
30
31   ### Wolfcrypt library (wolfSSL) ###
32
33   1. WolfSSL is included as a submodule. Initialize and update the submodule to fetch the project and checkout the appropriate commit.
34
35        > git submodule init
36        > git submodule update
37
38        The current commit will point the minimum recommended version of wolfSSL. Moving to a more recent tag or commit should also be supported but might not be tested.
39
40   2. Build the solution with either WolfDebug or WolfRelease as the active configuration, either from inside the Visual Studio or with the following command line:
41
42        > msbuild TPMCmd\simulator.sln /p:Configuration=WolfDebug
43
44* If necessary, update the definitions of the following macros in the [VendorString.h](TPMCmd/tpm/include/VendorString.h) header: `MANUFACTURER`, `VENDOR_STRING_1`, `FIRMWARE_V1 and FIRMWARE_V2`
45
46## Linux build
47
48Follows the common `./bootstrap && ./configure && make` convention.
49
50Note that autotools scripts require the following prerequisite packages: `autoconf-archive`, `pkg-config`, and sometimes `build-essential` and `automake`. Their absence is not automatically detected. The build also needs `gcc` and `libssl-dev` packages.
51
52Similarly to the Windows build, if you enable SM{2,3,4} algorithms in `TpmProfile.h`, the build may fail because of missing `SM{2,3,4}.h` headers. In this case you will need to manually copy them over from OpenSSL’s `include/crypt` folder.
53