1. 執行 TPM Simulator (Trusted Platform Module Simulator)
2. 執行下列 Python script:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
import os import sys import socket from socket import socket, AF_INET, SOCK_STREAM platformSock = socket(AF_INET, SOCK_STREAM) platformSock.connect(('localhost', 2322)) # Power on the TPM platformSock.send(b'\x00\x00\x00\x01') tpmSock = socket(AF_INET, SOCK_STREAM) tpmSock.connect(('localhost', 2321)) # Send TPM_SEND_COMMAND tpmSock.send(b'\x00\x00\x00\x08') # Send locality tpmSock.send(b'\x03') # Send # of bytes tpmSock.send(b'\x00\x00\x00\x0c') # Send tag tpmSock.send(b'\x80\x01') # Send command size tpmSock.send(b'\x00\x00\x00\x0c') # Send command code: TPMStartup tpmSock.send(b'\x00\x00\x01\x44') # Send TPM SU tpmSock.send(b'\x00\x00') # Receive the size of the response, the response, and 4 bytes of 0's reply=tpmSock.recv(18) for c in reply: print("%#x " % c)
參考資料
[Book] A Practical Guide to TPM 2.0 - Chap 6 Execution Environment - Setting Up the TPM