gitextract_w5yjmm2s/ ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── LICENSE ├── README ├── build.bat ├── build.sh ├── config.h.in ├── crypto/ │ ├── CMakeLists.txt │ ├── bn.h │ ├── bn_gmp.c │ ├── bn_openssl.c │ ├── hmac.c │ ├── hmac.h │ ├── rc4.c │ ├── rc4.h │ ├── rsa.c │ ├── rsa.h │ ├── sha1.c │ └── sha1.h ├── mtm/ │ ├── CMakeLists.txt │ ├── mtm_capability.c │ ├── mtm_cmd_handler.c │ ├── mtm_commands.h │ ├── mtm_counter.c │ ├── mtm_data.c │ ├── mtm_data.h │ ├── mtm_eviction.c │ ├── mtm_handles.c │ ├── mtm_handles.h │ ├── mtm_integrity.c │ ├── mtm_marshalling.c │ ├── mtm_marshalling.h │ ├── mtm_structures.h │ └── mtm_verification.c ├── tddl/ │ ├── CMakeLists.txt │ ├── tddl-tpm-emulator.h │ ├── tddl.c │ ├── tddl_unix.h │ ├── tddl_windows.h │ └── test_tddl.c ├── tpm/ │ ├── CMakeLists.txt │ ├── tpm_audit.c │ ├── tpm_authorization.c │ ├── tpm_capability.c │ ├── tpm_cmd_handler.c │ ├── tpm_commands.h │ ├── tpm_context.c │ ├── tpm_counter.c │ ├── tpm_credentials.c │ ├── tpm_crypto.c │ ├── tpm_daa.c │ ├── tpm_data.c │ ├── tpm_data.h │ ├── tpm_delegation.c │ ├── tpm_deprecated.c │ ├── tpm_emulator.h │ ├── tpm_emulator_extern.c │ ├── tpm_emulator_extern.h │ ├── tpm_error.c │ ├── tpm_eviction.c │ ├── tpm_handles.c │ ├── tpm_handles.h │ ├── tpm_identity.c │ ├── tpm_integrity.c │ ├── tpm_maintenance.c │ ├── tpm_management.c │ ├── tpm_marshalling.c │ ├── tpm_marshalling.h │ ├── tpm_migration.c │ ├── tpm_nv_storage.c │ ├── tpm_owner.c │ ├── tpm_startup.c │ ├── tpm_storage.c │ ├── tpm_structures.h │ ├── tpm_testing.c │ ├── tpm_ticks.c │ └── tpm_transport.c ├── tpmd/ │ ├── CMakeLists.txt │ ├── unix/ │ │ ├── CMakeLists.txt │ │ └── tpmd.c │ └── windows/ │ ├── CMakeLists.txt │ ├── control_tpmd.bat │ └── tpmd.c └── tpmd_dev/ ├── CMakeLists.txt ├── darwin/ │ ├── English.lproj/ │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Makefile │ ├── tpm_bridge.c │ └── tpm_bridge.xcodeproj/ │ ├── TemplateIcon.tiff │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata/ │ │ └── admin.xcuserdatad/ │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata/ │ └── admin.xcuserdatad/ │ └── xcschemes/ │ ├── tpm_bridge.xcscheme │ └── xcschememanagement.plist ├── linux/ │ ├── Makefile │ ├── tpmd_dev.c │ └── tpmd_dev.rules.in └── openbsd/ ├── Makefile ├── tpmd_dev.c └── tpmd_dev.h