├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── License.txt ├── Linux_SGXEclipsePlugin ├── build.sh ├── build_config │ ├── allElements.xml │ ├── build.properties │ ├── buildUpdateSite.xml │ ├── customAssembly.xml │ └── customTargets.xml ├── build_directory │ ├── features │ │ └── com.intel.sgx.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ └── feature.xml │ ├── plugins │ │ ├── com.intel.sgx.userguide │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── html │ │ │ │ ├── Resources │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── A_Generated_Trusted_Library.png │ │ │ │ │ │ ├── Add_New_Intel_SGX_Enclave_Dialog.png │ │ │ │ │ │ ├── Add_New_SGX_Static_Trusted_Library_Dialog.png │ │ │ │ │ │ ├── Add_Repository_Dialog.png │ │ │ │ │ │ ├── Add_SGX_Nature.png │ │ │ │ │ │ ├── Add_SGX_Untrusted_Module.png │ │ │ │ │ │ ├── Configurations_Specific_to_Intel_SGX_Technology.png │ │ │ │ │ │ ├── Configure_SGX_Hardware_Release_Mode.png │ │ │ │ │ │ ├── Copying_the_Untrusted_Module_to_a_Project.png │ │ │ │ │ │ ├── Customization_of_SGX_build_command.png │ │ │ │ │ │ ├── Down_Arrow_Button.png │ │ │ │ │ │ ├── Enclave_Configuration_Settings.png │ │ │ │ │ │ ├── Generate_Signed_Enclave_Dialog.png │ │ │ │ │ │ ├── Generate_Signed_Enclave_Dialog_with_Pre_configurations.png │ │ │ │ │ │ ├── Generated_Sample_Untrusted_Application.png │ │ │ │ │ │ ├── Generated_Skeleton_for_an_Enclave.png │ │ │ │ │ │ ├── Generating_Hash_Completion_Dialog.png │ │ │ │ │ │ ├── Import_or_Re_Generate_Enclave_Signing_Key.png │ │ │ │ │ │ ├── Intel_SGX_Configurations.png │ │ │ │ │ │ ├── Intel_SGX_Tools.png │ │ │ │ │ │ ├── Makefile_for_Intel_SGX.png │ │ │ │ │ │ ├── New_Project.png │ │ │ │ │ │ ├── Project_Explorer.png │ │ │ │ │ │ ├── Project_Menu.png │ │ │ │ │ │ ├── SGX_Preference_Page.png │ │ │ │ │ │ ├── Sample_Application.png │ │ │ │ │ │ ├── Select_Configuration_File.png │ │ │ │ │ │ ├── The_Location_of_the_Plugin_zip_Archive.png │ │ │ │ │ │ ├── The_Result_of_Running_Samples_Generated_for_Enclaves.png │ │ │ │ │ │ ├── Two_StepSigne_Enclave_Generate_Hash.png │ │ │ │ │ │ └── Two_Step_Sign_Enclave_Menu.png │ │ │ │ │ └── Stylesheets │ │ │ │ │ │ └── intel_css_styles.css │ │ │ │ └── content.html │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── intel │ │ │ │ │ └── sgx │ │ │ │ │ └── userguide │ │ │ │ │ └── Activator.java │ │ │ └── toc.xml │ │ └── com.intel.sgx │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ └── l10n │ │ │ │ └── bundle.properties │ │ │ ├── build.properties │ │ │ ├── discovery │ │ │ ├── test.c │ │ │ └── test.cpp │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ └── com │ │ │ │ └── intel │ │ │ │ └── sgx │ │ │ │ ├── Activator.java │ │ │ │ ├── CConfigurationDataProvider2.java │ │ │ │ ├── Messages.java │ │ │ │ ├── SdkPathVariableProvider.java │ │ │ │ ├── build │ │ │ │ └── SGXSDKCommandLauncher.java │ │ │ │ ├── dialogs │ │ │ │ ├── AddEnclaveFileDialog.java │ │ │ │ ├── AddTrustedStaticLibFileDialog.java │ │ │ │ ├── AddUntrustedModuleDialog.java │ │ │ │ ├── EnclaveConfigDialog.java │ │ │ │ ├── RemoveEnclaveFileDialog.java │ │ │ │ ├── SGXDialogBase.java │ │ │ │ ├── TwoStepSignDialogBase.java │ │ │ │ ├── TwoStepSignStep1Dialog1.java │ │ │ │ ├── TwoStepSignStep1Dialog2.java │ │ │ │ ├── TwoStepSignStep1Dialog3.java │ │ │ │ ├── TwoStepSignStep2Dialog.java │ │ │ │ └── UpdateSignKeyDialog.java │ │ │ │ ├── discovery │ │ │ │ ├── SGXSDKDiscoveredPathInfo.java │ │ │ │ ├── SGXSDKDiscoveryUpdater.java │ │ │ │ └── SGXSDKScannerInfoCollector.java │ │ │ │ ├── handlers │ │ │ │ ├── AddEnclave.java │ │ │ │ ├── AddSGXNature.java │ │ │ │ ├── AddTrustedStaticLib.java │ │ │ │ ├── AddUntrustedModule.java │ │ │ │ ├── EnclaveConfigHandler.java │ │ │ │ ├── ModuleCreationBaseHandler.java │ │ │ │ ├── RemoveEnclave.java │ │ │ │ ├── SGXHandler.java │ │ │ │ ├── SGXSDKWizardHandler.java │ │ │ │ ├── TwoStepSignHandlerBase.java │ │ │ │ ├── TwoStepSignStep1.java │ │ │ │ ├── TwoStepSignStep2.java │ │ │ │ ├── UpdateSigningKey.java │ │ │ │ └── about.html │ │ │ │ ├── messages.properties │ │ │ │ ├── natures │ │ │ │ ├── SGXCCNature.java │ │ │ │ ├── SGXNature.java │ │ │ │ └── SGXStaticCCNature.java │ │ │ │ ├── preferences │ │ │ │ ├── ISDKDescriptor.java │ │ │ │ ├── PreferenceConstants.java │ │ │ │ ├── PreferenceInitializer.java │ │ │ │ └── SGXPreferencePage.java │ │ │ │ ├── templates │ │ │ │ ├── CreateNativeFolders.java │ │ │ │ ├── SetCCNature.java │ │ │ │ └── SetStaticCCNature.java │ │ │ │ ├── testers │ │ │ │ └── SGXPropertyTester.java │ │ │ │ └── wizards │ │ │ │ ├── SGXCCProjectWizard.java │ │ │ │ └── SGXCProjectWizard.java │ │ │ └── templates │ │ │ ├── SGX.gif │ │ │ ├── SGXtemplates │ │ │ ├── c++ │ │ │ │ ├── minimal │ │ │ │ │ ├── enclavetemplate.xml │ │ │ │ │ ├── trustedstatictemplate.xml │ │ │ │ │ └── untrusted_module_template.xml │ │ │ │ └── with_sample │ │ │ │ │ └── enclavetemplate.xml │ │ │ ├── c │ │ │ │ ├── minimal │ │ │ │ │ ├── enclavetemplate.xml │ │ │ │ │ ├── trustedstatictemplate.xml │ │ │ │ │ └── untrusted_module_template.xml │ │ │ │ └── with_sample │ │ │ │ │ └── enclavetemplate.xml │ │ │ ├── common │ │ │ │ └── addnaturetemplate.xml │ │ │ ├── configtemplate.xml │ │ │ ├── ctemplate.xml │ │ │ ├── cxxstaticlibtemplate.xml │ │ │ ├── cxxtemplate.xml │ │ │ └── template.properties │ │ │ ├── newmngc_app.gif │ │ │ ├── newmngcc_app.gif │ │ │ ├── resources │ │ │ ├── Basename.config.xml │ │ │ └── Basename_private.pem │ │ │ └── sgx │ │ │ ├── SGXEnclave │ │ │ ├── makefiles │ │ │ │ ├── c++ │ │ │ │ │ ├── sgx_t.mk │ │ │ │ │ ├── sgx_u.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ ├── c │ │ │ │ │ ├── sgx_t.mk │ │ │ │ │ ├── sgx_u.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ └── common │ │ │ │ │ └── Makefile │ │ │ ├── trusted │ │ │ │ ├── Enclave1.config.xml │ │ │ │ ├── Enclave1.cpp │ │ │ │ ├── Enclave1.edl │ │ │ │ ├── Enclave1.h │ │ │ │ ├── Enclave1.lds │ │ │ │ ├── Enclave1_minimal.cpp │ │ │ │ ├── Enclave1_minimal.edl │ │ │ │ └── Enclave1_private.pem │ │ │ └── untrusted │ │ │ │ ├── sample.cpp │ │ │ │ └── sample.h │ │ │ ├── SGXNature │ │ │ └── Makefile │ │ │ ├── SGXTrustedStaticLibrary │ │ │ ├── makefiles │ │ │ │ ├── c++ │ │ │ │ │ ├── sgx_t_static.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ ├── c │ │ │ │ │ ├── sgx_t_static.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ └── common │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.without_app │ │ │ └── static_trusted │ │ │ │ ├── Enclave2_minimal.cpp │ │ │ │ └── Enclave2_minimal.edl │ │ │ └── SGXUntrustedModule │ │ │ ├── makefiles │ │ │ ├── c++ │ │ │ │ └── sgx_u.without_app.mk │ │ │ ├── c │ │ │ │ └── sgx_u.without_app.mk │ │ │ └── common │ │ │ │ └── Makefile │ │ │ └── untrusted │ │ │ └── untrusted_module.cpp │ └── sites │ │ └── site.xml ├── clean.sh └── readme.txt ├── Makefile ├── README.md ├── SampleCode ├── Cxx11SGXDemo │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ └── TrustedLibrary │ │ │ └── Libcxx.cpp │ ├── Enclave │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_debug.lds │ │ ├── Enclave_private.pem │ │ └── TrustedLibrary │ │ │ ├── Libcxx.cpp │ │ │ └── Libcxx.edl │ ├── Makefile │ └── README.txt ├── LocalAttestation │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ └── App.cpp │ ├── Enclave1 │ │ ├── Enclave1.config.xml │ │ ├── Enclave1.cpp │ │ ├── Enclave1.edl │ │ ├── Enclave1.lds │ │ ├── Enclave1_private.pem │ │ ├── Utility_E1.cpp │ │ └── Utility_E1.h │ ├── Enclave2 │ │ ├── Enclave2.config.xml │ │ ├── Enclave2.cpp │ │ ├── Enclave2.edl │ │ ├── Enclave2.lds │ │ ├── Enclave2_private.pem │ │ ├── Utility_E2.cpp │ │ └── Utility_E2.h │ ├── Enclave3 │ │ ├── Enclave3.config.xml │ │ ├── Enclave3.cpp │ │ ├── Enclave3.edl │ │ ├── Enclave3.lds │ │ ├── Enclave3_private.pem │ │ ├── Utility_E3.cpp │ │ └── Utility_E3.h │ ├── Include │ │ └── dh_session_protocol.h │ ├── LocalAttestationCode │ │ ├── EnclaveMessageExchange.cpp │ │ ├── EnclaveMessageExchange.h │ │ ├── LocalAttestationCode.edl │ │ ├── datatypes.h │ │ └── error_codes.h │ ├── Makefile │ ├── README.txt │ └── Untrusted_LocalAttestation │ │ ├── UntrustedEnclaveMessageExchange.cpp │ │ └── UntrustedEnclaveMessageExchange.h ├── MutualAttestation │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ └── App.cpp │ ├── Enclave1 │ │ ├── Enclave1.config.xml │ │ ├── Enclave1.cpp │ │ ├── Enclave1.edl │ │ ├── Enclave1.lds │ │ └── Enclave1_private.pem │ ├── Enclave2 │ │ ├── Enclave2.config.xml │ │ ├── Enclave2.cpp │ │ ├── Enclave2.edl │ │ ├── Enclave2.lds │ │ └── Enclave2_private.pem │ ├── Enclave3 │ │ ├── Enclave3.config.xml │ │ ├── Enclave3.cpp │ │ ├── Enclave3.edl │ │ ├── Enclave3.lds │ │ └── Enclave3_private.pem │ ├── Makefile │ └── README.txt ├── PowerTransition │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── ErrorSupport.cpp │ │ ├── ErrorSupport.h │ │ ├── rwlock.cpp │ │ └── rwlock.h │ ├── Common │ │ └── types.h │ ├── Enclave │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ └── Enclave_private.pem │ ├── Makefile │ └── README.txt ├── RemoteAttestation │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── README.txt │ ├── isv_app │ │ ├── isv_app.cpp │ │ └── sample_messages.h │ ├── isv_enclave │ │ ├── isv_enclave.config.xml │ │ ├── isv_enclave.cpp │ │ ├── isv_enclave.edl │ │ ├── isv_enclave.lds │ │ └── isv_enclave_private.pem │ └── service_provider │ │ ├── ecp.cpp │ │ ├── ecp.h │ │ ├── ias_ra.cpp │ │ ├── ias_ra.h │ │ ├── network_ra.cpp │ │ ├── network_ra.h │ │ ├── remote_attestation_result.h │ │ ├── service_provider.cpp │ │ └── service_provider.h ├── SampleCommonLoader │ ├── App │ │ ├── enclave_entry.S │ │ └── sample.cpp │ ├── Include │ │ ├── enclave_entry.h │ │ ├── linux-regs.h │ │ ├── sgx_enclave_blob.h │ │ └── sgx_enclave_ss.h │ ├── Makefile │ └── README.txt ├── SampleEnclave │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Functions.cpp │ │ │ ├── Pointers.cpp │ │ │ └── Types.cpp │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libcxx.cpp │ │ │ └── Thread.cpp │ ├── Enclave │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Arrays.edl │ │ │ ├── Functions.cpp │ │ │ ├── Functions.edl │ │ │ ├── Pointers.cpp │ │ │ ├── Pointers.edl │ │ │ ├── Types.cpp │ │ │ └── Types.edl │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libc.edl │ │ │ ├── Libcxx.cpp │ │ │ ├── Libcxx.edl │ │ │ ├── Thread.cpp │ │ │ └── Thread.edl │ │ ├── config.01.xml │ │ ├── config.02.xml │ │ ├── config.03.xml │ │ └── config.04.xml │ ├── Include │ │ └── user_types.h │ ├── Makefile │ └── README.txt ├── SampleEnclavePCL │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Functions.cpp │ │ │ ├── Pointers.cpp │ │ │ └── Types.cpp │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libcxx.cpp │ │ │ └── Thread.cpp │ ├── Enclave │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Arrays.edl │ │ │ ├── Functions.cpp │ │ │ ├── Functions.edl │ │ │ ├── Pointers.cpp │ │ │ ├── Pointers.edl │ │ │ ├── Types.cpp │ │ │ └── Types.edl │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libc.edl │ │ │ ├── Libcxx.cpp │ │ │ ├── Libcxx.edl │ │ │ ├── Thread.cpp │ │ │ └── Thread.edl │ ├── Include │ │ └── user_types.h │ ├── Makefile │ ├── README.md │ ├── Seal │ │ ├── Seal.config.xml │ │ ├── Seal.cpp │ │ ├── Seal.edl │ │ ├── Seal.lds │ │ └── Seal_private.pem │ └── debug_mock_key.bin ├── SealedData │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── DRM_app │ │ ├── DRM_app.cpp │ │ ├── ReplayProtectedDRM.cpp │ │ ├── ReplayProtectedDRM.h │ │ ├── TimeBasedDRM.cpp │ │ └── TimeBasedDRM.h │ ├── DRM_enclave │ │ ├── DRM_enclave.config.xml │ │ ├── DRM_enclave.cpp │ │ ├── DRM_enclave.edl │ │ ├── DRM_enclave.lds │ │ └── DRM_enclave_private.pem │ ├── Makefile │ ├── README.txt │ └── include │ │ └── sealed_data_defines.h └── Switchless │ ├── App │ ├── App.cpp │ └── App.h │ ├── Enclave │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.edl │ ├── Enclave.h │ ├── Enclave.lds │ └── Enclave_private.pem │ ├── Makefile │ └── README.txt ├── common ├── inc │ ├── internal │ │ ├── ae_ipp.h │ │ ├── arch.h │ │ ├── cpprt_internal.h │ │ ├── cpputil.h │ │ ├── cpuid.h │ │ ├── crypto_wrapper.h │ │ ├── dh.h │ │ ├── driver_api.h │ │ ├── ecp_interface.h │ │ ├── elf_util.h │ │ ├── elfheader │ │ │ ├── README.txt │ │ │ ├── elf_common.h │ │ │ └── elfstructs.h │ │ ├── enclave_creator.h │ │ ├── global_data.h │ │ ├── global_init.h │ │ ├── inst.h │ │ ├── ipp_wrapper.h │ │ ├── linux │ │ │ ├── cpuid_gnu.h │ │ │ ├── linux-regs.h │ │ │ └── sgx_cet.h │ │ ├── metadata.h │ │ ├── mini_snprintf.h │ │ ├── oal │ │ │ └── uae_oal_api.h │ │ ├── pcl_common.h │ │ ├── routine.h │ │ ├── rts.h │ │ ├── rts_cmd.h │ │ ├── se_atomic.h │ │ ├── se_cdefs.h │ │ ├── se_cpu_feature.h │ │ ├── se_cpu_feature_defs.h │ │ ├── se_cpu_feature_defs_ext.h │ │ ├── se_debugger_lib.h │ │ ├── se_enclave_type.h │ │ ├── se_error_internal.h │ │ ├── se_event.h │ │ ├── se_lock.hpp │ │ ├── se_macro.h │ │ ├── se_map.h │ │ ├── se_memcpy.h │ │ ├── se_memory.h │ │ ├── se_page_attr.h │ │ ├── se_quote_internal.h │ │ ├── se_rwlock.h │ │ ├── se_stdio.h │ │ ├── se_string.h │ │ ├── se_tcrypto_common.h │ │ ├── se_thread.h │ │ ├── se_time.h │ │ ├── se_trace.h │ │ ├── se_types.h │ │ ├── se_vendor.h │ │ ├── se_version.h │ │ ├── se_wrapper.h │ │ ├── sgx_ecc256_internal.h │ │ ├── sgx_memset_s.h │ │ ├── sgx_profile.h │ │ ├── sgx_read_rand.h │ │ ├── sgx_sha256_128.h │ │ ├── sl_atomic.h │ │ ├── sl_bitops.h │ │ ├── sl_compiler.h │ │ ├── sl_debug.h │ │ ├── sl_fcall_mngr.h │ │ ├── sl_fcall_mngr_common.h │ │ ├── sl_init.h │ │ ├── sl_memlog.h │ │ ├── sl_once.h │ │ ├── sl_printk.h │ │ ├── sl_siglines.h │ │ ├── sl_spinlock.h │ │ ├── sl_types.h │ │ ├── sl_uswitchless.h │ │ ├── sl_util.h │ │ ├── sl_workers.h │ │ ├── ssl_wrapper.h │ │ ├── tae_service_internal.h │ │ ├── thread_data.h │ │ ├── trts_inst.h │ │ ├── tseal_migration_attr.h │ │ ├── uae_service_internal.h │ │ ├── uncopyable.h │ │ ├── uswitchless.h │ │ ├── util.h │ │ └── xsave.h │ ├── sgx.h │ ├── sgx_attributes.h │ ├── sgx_capable.h │ ├── sgx_cpuid.h │ ├── sgx_defs.h │ ├── sgx_dh.h │ ├── sgx_ecp_types.h │ ├── sgx_edger8r.h │ ├── sgx_eid.h │ ├── sgx_error.h │ ├── sgx_intrin.h │ ├── sgx_key.h │ ├── sgx_key_exchange.h │ ├── sgx_lfence.h │ ├── sgx_mage.h │ ├── sgx_pcl_guid.h │ ├── sgx_quote.h │ ├── sgx_random_buffers.h │ ├── sgx_report.h │ ├── sgx_spinlock.h │ ├── sgx_tae_service.edl │ ├── sgx_tae_service.h │ ├── sgx_tcrypto.h │ ├── sgx_thread.h │ ├── sgx_tkey_exchange.edl │ ├── sgx_tkey_exchange.h │ ├── sgx_tprotected_fs.edl │ ├── sgx_tprotected_fs.h │ ├── sgx_trts.h │ ├── sgx_trts_exception.h │ ├── sgx_tseal.h │ ├── sgx_tstdc.edl │ ├── sgx_uae_service.h │ ├── sgx_ukey_exchange.h │ ├── sgx_urts.h │ ├── sgx_uswitchless.h │ ├── sgx_utils.h │ ├── stdc++ │ │ ├── exception │ │ ├── linux │ │ │ ├── exception │ │ │ └── typeinfo │ │ ├── new │ │ └── typeinfo │ └── tlibc │ │ ├── assert.h │ │ ├── complex.h │ │ ├── ctype.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── float.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── limits.h │ │ ├── math.h │ │ ├── mbusafecrt.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ ├── _types.h │ │ ├── cdefs.h │ │ ├── endian.h │ │ ├── ieee.h │ │ ├── limits.h │ │ ├── stdint.h │ │ └── types.h │ │ ├── time.h │ │ ├── unistd.h │ │ ├── wchar.h │ │ └── wctype.h ├── se_wrapper │ └── Makefile └── src │ ├── crypto_cmac_128.cpp │ ├── crypto_evp_digest.cpp │ ├── dh.cpp │ ├── ecp.cpp │ ├── linux │ └── xsave_gnu.S │ ├── se_event.c │ ├── se_map.c │ ├── se_memory.c │ ├── se_rwlock.c │ ├── se_thread.c │ ├── se_time.c │ ├── se_trace.c │ ├── sgx_memset_s.cpp │ ├── sgx_profile.cpp │ ├── sgx_read_rand.cpp │ ├── sgx_sha256_128.cpp │ ├── sl_fcall_mngr_common.c │ ├── sl_memlog_common.c │ ├── sl_once_common.c │ └── sl_siglines_common.c ├── download_prebuilt.sh ├── external ├── CppMicroServices │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.rst │ ├── CONTRIBUTING.rst │ ├── COPYRIGHT │ ├── CTestConfig.cmake │ ├── CppMicroServicesConfig.cmake.in │ ├── CppMicroServicesConfigVersion.cmake.in │ ├── LICENSE │ ├── README.rst │ ├── VERSION │ ├── appveyor.yml │ ├── cmake │ │ ├── BundleInit.cpp │ │ ├── CMakeResourceDependencies.cpp │ │ ├── Export.h.in │ │ ├── GlobalConfig.h.in │ │ ├── cppmicroservices_resources.rc.in │ │ ├── try_compile │ │ │ ├── us_have_regex.cpp │ │ │ └── us_have_thread_local.cpp │ │ ├── usBundleConfig.cmake.in │ │ ├── usBundleConfigVersion.cmake.in │ │ ├── usCTestScript.cmake │ │ ├── usCTestScript_custom.cmake │ │ ├── usCTestScript_travis.cmake │ │ ├── usFunctionAddResources.cmake │ │ ├── usFunctionCheckCompilerFlags.cmake │ │ ├── usFunctionCheckResourceLinking.cmake │ │ ├── usFunctionCompileSnippets.cmake │ │ ├── usFunctionCreateTestBundle.cmake │ │ ├── usFunctionEmbedResources.cmake │ │ ├── usFunctionGenerateBundleInit.cmake │ │ ├── usFunctionGetResourceSource.cmake │ │ └── usMacroCreateBundle.cmake │ ├── codecov.yml │ ├── conf.py │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── _static │ │ │ └── css │ │ │ │ └── custom.css │ │ ├── _templates │ │ │ └── layout.html │ │ ├── cmake.py │ │ ├── doxygen-breathe.conf │ │ ├── man │ │ │ ├── cppmicroservices-framework.3.rst │ │ │ ├── cppmicroservices-httpservice.3.rst │ │ │ ├── cppmicroservices-httpservice.7.rst │ │ │ ├── cppmicroservices-shellservice.3.rst │ │ │ ├── cppmicroservices-shellservice.7.rst │ │ │ ├── cppmicroservices-webconsole.3.rst │ │ │ ├── cppmicroservices-webconsole.7.rst │ │ │ ├── cppmicroservices.3.rst │ │ │ ├── cppmicroservices.7.rst │ │ │ ├── usResourceCompiler3.1.rst │ │ │ └── usShell3.1.rst │ │ ├── requirements.txt │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── best_practices │ │ │ └── emulate_singleton.rst │ │ │ ├── build_instructions.rst │ │ │ ├── examples │ │ │ ├── getting_started │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── service_time │ │ │ │ │ ├── ServiceTime.cpp │ │ │ │ │ └── ServiceTime.h │ │ │ │ ├── service_time_consumer │ │ │ │ │ ├── ServiceTimeConsumer.cpp │ │ │ │ │ └── manifest.json │ │ │ │ └── service_time_systemclock │ │ │ │ │ ├── ServiceTimeImpl.cpp │ │ │ │ │ └── manifest.json │ │ │ └── makefile │ │ │ │ ├── IDictionaryService.cpp │ │ │ │ ├── IDictionaryService.h │ │ │ │ ├── Makefile │ │ │ │ ├── bundle.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── getting_started.rst │ │ │ ├── legal.rst │ │ │ └── tutorial │ │ │ ├── Example1.rst │ │ │ ├── Example2.rst │ │ │ ├── Example2b.rst │ │ │ ├── Example3.rst │ │ │ ├── Example4.rst │ │ │ ├── Example5.rst │ │ │ ├── Example6.rst │ │ │ ├── Example7.rst │ │ │ ├── dictionaryclient │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryclient2 │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryclient3 │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryservice │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── IDictionaryService.cpp │ │ │ ├── IDictionaryService.h │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── driver │ │ │ ├── CMakeLists.txt │ │ │ ├── CppMicroServicesExamplesDriverConfig.h.in │ │ │ └── main.cpp │ │ │ ├── eventlistener │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── frenchdictionary │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── index.rst │ │ │ ├── spellcheckclient │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ └── spellcheckservice │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ISpellCheckService.cpp │ │ │ ├── ISpellCheckService.h │ │ │ └── resources │ │ │ └── manifest.json │ ├── fixcoveragefilepaths.py │ ├── format_code.sh │ ├── framework │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── api │ │ │ │ ├── macros.rst │ │ │ │ ├── main │ │ │ │ │ ├── Bundle.rst │ │ │ │ │ ├── BundleActivator.rst │ │ │ │ │ ├── BundleContext.rst │ │ │ │ │ ├── BundleEvent.rst │ │ │ │ │ ├── BundleEventHook.rst │ │ │ │ │ ├── BundleFindHook.rst │ │ │ │ │ ├── BundleResource.rst │ │ │ │ │ ├── BundleResourceStream.rst │ │ │ │ │ ├── Framework.rst │ │ │ │ │ ├── FrameworkEvent.rst │ │ │ │ │ ├── PrototypeServiceFactory.rst │ │ │ │ │ ├── ServiceEvent.rst │ │ │ │ │ ├── ServiceEventListenerHook.rst │ │ │ │ │ ├── ServiceException.rst │ │ │ │ │ ├── ServiceFactory.rst │ │ │ │ │ ├── ServiceFindHook.rst │ │ │ │ │ ├── ServiceInterface.rst │ │ │ │ │ ├── ServiceListenerHook.rst │ │ │ │ │ ├── ServiceObjects.rst │ │ │ │ │ ├── ServiceReference.rst │ │ │ │ │ ├── ServiceRegistration.rst │ │ │ │ │ └── ServiceTracker.rst │ │ │ │ └── util │ │ │ │ │ ├── Any.rst │ │ │ │ │ ├── AnyMap.rst │ │ │ │ │ ├── BundleVersion.rst │ │ │ │ │ ├── Constants.rst │ │ │ │ │ ├── FrameworkFactory.rst │ │ │ │ │ ├── GetBundleContext.rst │ │ │ │ │ ├── LDAPFilter.rst │ │ │ │ │ ├── Listeners.rst │ │ │ │ │ ├── SharedData.rst │ │ │ │ │ ├── SharedLibrary.rst │ │ │ │ │ ├── ShrinkableMap.rst │ │ │ │ │ └── ShrinkableVector.rst │ │ │ ├── bundle_properties.rst │ │ │ ├── resources.rst │ │ │ ├── service_hooks.rst │ │ │ ├── snippets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── uServices-activator │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-bundlecontext │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-registration │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-resources-cmake │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeLists_example.txt │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── mybundle.cpp │ │ │ │ ├── uServices-resources │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-servicelistenerhook │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-servicetracker │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-singleton │ │ │ │ │ ├── SingletonOne.cpp │ │ │ │ │ ├── SingletonOne.h │ │ │ │ │ ├── SingletonTwo.cpp │ │ │ │ │ ├── SingletonTwo.h │ │ │ │ │ ├── files.cmake │ │ │ │ │ └── main.cpp │ │ │ │ └── uServices-staticbundles │ │ │ │ │ ├── MyStaticBundle.cpp │ │ │ │ │ ├── files.cmake │ │ │ │ │ └── main.cpp │ │ │ └── static_bundles.rst │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── FrameworkConfig.h.in │ │ │ └── cppmicroservices │ │ │ │ ├── Any.h │ │ │ │ ├── AnyMap.h │ │ │ │ ├── Bundle.h │ │ │ │ ├── BundleActivator.h │ │ │ │ ├── BundleContext.h │ │ │ │ ├── BundleEvent.h │ │ │ │ ├── BundleEventHook.h │ │ │ │ ├── BundleFindHook.h │ │ │ │ ├── BundleImport.h │ │ │ │ ├── BundleInitialization.h │ │ │ │ ├── BundleResource.h │ │ │ │ ├── BundleResourceStream.h │ │ │ │ ├── BundleVersion.h │ │ │ │ ├── Constants.h │ │ │ │ ├── Framework.h │ │ │ │ ├── FrameworkEvent.h │ │ │ │ ├── FrameworkFactory.h │ │ │ │ ├── GetBundleContext.h │ │ │ │ ├── LDAPFilter.h │ │ │ │ ├── LDAPProp.h │ │ │ │ ├── ListenerFunctors.h │ │ │ │ ├── ListenerToken.h │ │ │ │ ├── PrototypeServiceFactory.h │ │ │ │ ├── ServiceEvent.h │ │ │ │ ├── ServiceEventListenerHook.h │ │ │ │ ├── ServiceException.h │ │ │ │ ├── ServiceFactory.h │ │ │ │ ├── ServiceFindHook.h │ │ │ │ ├── ServiceInterface.h │ │ │ │ ├── ServiceListenerHook.h │ │ │ │ ├── ServiceObjects.h │ │ │ │ ├── ServiceProperties.h │ │ │ │ ├── ServiceReference.h │ │ │ │ ├── ServiceReferenceBase.h │ │ │ │ ├── ServiceRegistration.h │ │ │ │ ├── ServiceRegistrationBase.h │ │ │ │ ├── ServiceTracker.h │ │ │ │ ├── ServiceTrackerCustomizer.h │ │ │ │ ├── SharedData.h │ │ │ │ ├── SharedLibrary.h │ │ │ │ ├── ShrinkableMap.h │ │ │ │ ├── ShrinkableVector.h │ │ │ │ └── detail │ │ │ │ ├── BundleAbstractTracked.h │ │ │ │ ├── BundleAbstractTracked.tpp │ │ │ │ ├── BundleResourceBuffer.h │ │ │ │ ├── Log.h │ │ │ │ ├── ServiceTracker.tpp │ │ │ │ ├── ServiceTrackerPrivate.h │ │ │ │ ├── ServiceTrackerPrivate.tpp │ │ │ │ ├── Threads.h │ │ │ │ ├── TrackedService.h │ │ │ │ ├── TrackedService.tpp │ │ │ │ ├── TrackedServiceListener.h │ │ │ │ └── WaitCondition.h │ │ ├── resources │ │ │ └── manifest.json.in │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bundle │ │ │ │ ├── Bundle.cpp │ │ │ │ ├── BundleArchive.cpp │ │ │ │ ├── BundleArchive.h │ │ │ │ ├── BundleContext.cpp │ │ │ │ ├── BundleContextPrivate.cpp │ │ │ │ ├── BundleContextPrivate.h │ │ │ │ ├── BundleElfFile.cpp │ │ │ │ ├── BundleEvent.cpp │ │ │ │ ├── BundleEventHook.cpp │ │ │ │ ├── BundleEventInternal.h │ │ │ │ ├── BundleFindHook.cpp │ │ │ │ ├── BundleHooks.cpp │ │ │ │ ├── BundleHooks.h │ │ │ │ ├── BundleMachOFile.cpp │ │ │ │ ├── BundleManifest.cpp │ │ │ │ ├── BundleManifest.h │ │ │ │ ├── BundleObjFile.cpp │ │ │ │ ├── BundleObjFile.h │ │ │ │ ├── BundlePEFile.cpp │ │ │ │ ├── BundlePrivate.cpp │ │ │ │ ├── BundlePrivate.h │ │ │ │ ├── BundleRegistry.cpp │ │ │ │ ├── BundleRegistry.h │ │ │ │ ├── BundleResource.cpp │ │ │ │ ├── BundleResourceBuffer.cpp │ │ │ │ ├── BundleResourceContainer.cpp │ │ │ │ ├── BundleResourceContainer.h │ │ │ │ ├── BundleResourceStream.cpp │ │ │ │ ├── BundleStorage.h │ │ │ │ ├── BundleStorageFile.cpp │ │ │ │ ├── BundleStorageFile.h │ │ │ │ ├── BundleStorageMemory.cpp │ │ │ │ ├── BundleStorageMemory.h │ │ │ │ ├── BundleThread.cpp │ │ │ │ ├── BundleThread.h │ │ │ │ ├── BundleUtils.cpp │ │ │ │ ├── BundleUtils.h │ │ │ │ ├── BundleVersion.cpp │ │ │ │ ├── Constants.cpp │ │ │ │ ├── CoreBundleContext.cpp │ │ │ │ ├── CoreBundleContext.h │ │ │ │ ├── Debug.cpp │ │ │ │ ├── Debug.h │ │ │ │ ├── Fragment.h │ │ │ │ └── Resolver.h │ │ │ ├── service │ │ │ │ ├── ListenerToken.cpp │ │ │ │ ├── ServiceEvent.cpp │ │ │ │ ├── ServiceEventListenerHook.cpp │ │ │ │ ├── ServiceException.cpp │ │ │ │ ├── ServiceFindHook.cpp │ │ │ │ ├── ServiceHooks.cpp │ │ │ │ ├── ServiceHooks.h │ │ │ │ ├── ServiceListenerEntry.cpp │ │ │ │ ├── ServiceListenerEntry.h │ │ │ │ ├── ServiceListenerHook.cpp │ │ │ │ ├── ServiceListenerHookPrivate.h │ │ │ │ ├── ServiceListeners.cpp │ │ │ │ ├── ServiceListeners.h │ │ │ │ ├── ServiceObjects.cpp │ │ │ │ ├── ServiceReferenceBase.cpp │ │ │ │ ├── ServiceReferenceBasePrivate.cpp │ │ │ │ ├── ServiceReferenceBasePrivate.h │ │ │ │ ├── ServiceRegistrationBase.cpp │ │ │ │ ├── ServiceRegistrationBasePrivate.cpp │ │ │ │ ├── ServiceRegistrationBasePrivate.h │ │ │ │ ├── ServiceRegistry.cpp │ │ │ │ └── ServiceRegistry.h │ │ │ └── util │ │ │ │ ├── Any.cpp │ │ │ │ ├── AnyMap.cpp │ │ │ │ ├── Framework.cpp │ │ │ │ ├── FrameworkEvent.cpp │ │ │ │ ├── FrameworkFactory.cpp │ │ │ │ ├── FrameworkPrivate.cpp │ │ │ │ ├── FrameworkPrivate.h │ │ │ │ ├── LDAPExpr.cpp │ │ │ │ ├── LDAPExpr.h │ │ │ │ ├── LDAPFilter.cpp │ │ │ │ ├── LDAPProp.cpp │ │ │ │ ├── Properties.cpp │ │ │ │ ├── Properties.h │ │ │ │ ├── SharedLibrary.cpp │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── bundles │ │ │ ├── CMakeLists.txt │ │ │ ├── libA │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA.cpp │ │ │ │ ├── TestBundleAService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libA2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA2.cpp │ │ │ │ ├── TestBundleA2Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libADuplicate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA.cpp │ │ │ │ ├── TestBundleAService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_00 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_01 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_01.cpp │ │ │ │ ├── TestBundleBA_01Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_10 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_S1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_S1.cpp │ │ │ │ ├── TestBundleBA_S1Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_X1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_X1.cpp │ │ │ │ ├── TestBundleBA_X1Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBWithStatic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleB.cpp │ │ │ │ ├── TestBundleBService.h │ │ │ │ ├── TestBundleImportedByB.cpp │ │ │ │ ├── resources │ │ │ │ │ ├── dynamic.txt │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── res.txt │ │ │ │ └── resources_static │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── res.txt │ │ │ │ │ └── static.txt │ │ │ ├── libC1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleC1.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libH │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleH.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libLQ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleLQ.cpp │ │ │ │ ├── TestBundleLQService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libM │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithEmptyBundleName │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithInvalidVersion │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithInvalidVersionType │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithoutBundleName │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithAppendedResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithLinkedResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ ├── icons │ │ │ │ │ ├── compressable.bmp │ │ │ │ │ ├── cppmicroservices.png │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── special_chars.dummy.txt │ │ │ │ │ └── test.xml │ │ │ ├── libS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleS.cpp │ │ │ │ ├── TestBundleSService0.h │ │ │ │ ├── TestBundleSService1.h │ │ │ │ ├── TestBundleSService2.h │ │ │ │ ├── TestBundleSService3.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL1 │ │ │ │ ├── ActivatorSL1.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FooService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL3 │ │ │ │ ├── ActivatorSL3.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL4 │ │ │ │ ├── ActivatorSL4.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libStartFail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleF.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libStopFail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleF.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libU │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleU.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libWaitOnBundleOperation │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleWaitOnOperation.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ └── libWithNonStandardExt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleExt.cpp │ │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── driver │ │ │ ├── AnyMapTest.cpp │ │ │ ├── AnyTest.cpp │ │ │ ├── BundleActivatorTest.cpp │ │ │ ├── BundleEventTest.cpp │ │ │ ├── BundleHooksTest.cpp │ │ │ ├── BundleManifestTest.cpp │ │ │ ├── BundlePropsInterface.h │ │ │ ├── BundleRegistryPerformanceTest.cpp │ │ │ ├── BundleResourceTest.cpp │ │ │ ├── BundleTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcurrencyTest.cpp │ │ │ ├── FrameworkEventTest.cpp │ │ │ ├── FrameworkFactoryTest.cpp │ │ │ ├── FrameworkListenerTest.cpp │ │ │ ├── HelgrindTest.cpp │ │ │ ├── LDAPFilterTest.cpp │ │ │ ├── LDAPQueryTest.cpp │ │ │ ├── LogTest.cpp │ │ │ ├── MemcheckTest.cpp │ │ │ ├── MultipleListenersTest.cpp │ │ │ ├── ResourceCompilerTest.cpp │ │ │ ├── ServiceControlInterface.h │ │ │ ├── ServiceFactoryTest.cpp │ │ │ ├── ServiceHooksTest.cpp │ │ │ ├── ServiceListenerTest.cpp │ │ │ ├── ServiceRegistryPerformanceTest.cpp │ │ │ ├── ServiceRegistryTest.cpp │ │ │ ├── ServiceTemplateTest.cpp │ │ │ ├── ServiceTrackerTest.cpp │ │ │ ├── SharedLibraryTest.cpp │ │ │ ├── ShrinkableMapTest.cpp │ │ │ ├── ShrinkableVectorTest.cpp │ │ │ ├── StaticBundleResourceTest.cpp │ │ │ ├── StaticBundleTest.cpp │ │ │ ├── TestDriverActivator.cpp │ │ │ ├── TestDriverActivator.h │ │ │ ├── TestManager.cpp │ │ │ ├── TestManager.h │ │ │ ├── TestResource.txt │ │ │ ├── TestUtilListenerHelpers.h │ │ │ ├── TestingConfig.h.in │ │ │ ├── TestingMacros.h │ │ │ ├── ZipFile.h │ │ │ └── manifest.json │ │ │ ├── gtest │ │ │ ├── AnyMapTest.cpp │ │ │ ├── BundleVersionTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── FrameworkTest.cpp │ │ │ ├── GlobalServiceTrackerTest.cpp │ │ │ ├── LDAPExprTest.cpp │ │ │ ├── LDAPFilterTest.cpp │ │ │ ├── OpenFileHandleTest.cpp │ │ │ ├── ServiceExceptionTest.cpp │ │ │ ├── ServiceObjectsTest.cpp │ │ │ ├── ServiceReferenceTest.cpp │ │ │ ├── UtilsTest.cpp │ │ │ ├── main.cpp │ │ │ └── manifest.json │ │ │ └── util │ │ │ ├── ImportTestBundles.cpp │ │ │ ├── TestUtilBundleListener.cpp │ │ │ ├── TestUtilBundleListener.h │ │ │ ├── TestUtilFrameworkListener.cpp │ │ │ ├── TestUtilFrameworkListener.h │ │ │ ├── TestUtils.cpp │ │ │ └── TestUtils.h │ ├── index.rst │ ├── install_cmake.sh │ ├── opencppcoverage_mergereports.bat │ ├── revision_info.txt │ ├── third_party │ │ ├── README │ │ ├── cppmicroservices_elf.h │ │ ├── cppmicroservices_mach-o.h │ │ ├── cppmicroservices_pe.h │ │ ├── dirent_win32.h │ │ ├── json │ │ │ ├── json-forwards.h │ │ │ └── json.h │ │ ├── jsoncpp.cpp │ │ ├── libtelnet.c │ │ ├── libtelnet.h │ │ ├── linenoise.c │ │ ├── linenoise.h │ │ ├── miniz.c │ │ ├── miniz.h │ │ ├── optionparser.h │ │ ├── patches │ │ │ ├── civetweb_v1.8.patch │ │ │ ├── dirent_v1.20.1.patch │ │ │ ├── googletest_1.8.0.patch │ │ │ ├── jsoncpp_0.10.6.patch │ │ │ ├── linenoise_0f2343d2.patch │ │ │ ├── miniz_v115_r4.patch │ │ │ ├── mustache_2.0.patch │ │ │ ├── optionparser_1.7.patch │ │ │ └── tinyscheme_v1.41.patch │ │ └── tinyscheme │ │ │ ├── BUILDING │ │ │ ├── COPYING │ │ │ ├── Manual.txt │ │ │ ├── MiniSCHEMETribute.txt │ │ │ ├── dynload.c │ │ │ ├── dynload.h │ │ │ ├── hack.txt │ │ │ ├── init.scm │ │ │ ├── opdefines.h │ │ │ ├── scheme-private.h │ │ │ ├── scheme.c │ │ │ └── scheme.h │ ├── tools │ │ └── rc │ │ │ ├── CMakeLists.txt │ │ │ └── ResourceCompiler.cpp │ ├── util │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── cppmicroservices │ │ │ │ └── util │ │ │ │ ├── Error.h │ │ │ │ ├── FileSystem.h │ │ │ │ └── String.h │ │ └── src │ │ │ ├── Error.cpp │ │ │ ├── FileSystem.cpp │ │ │ └── String.cpp │ ├── valgrind_suppressions.txt │ └── valgrindrc ├── DALSdk │ └── JHI │ │ └── linux │ │ ├── jhi.h │ │ └── typedefs.h ├── epid-sdk │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── Makefile.in │ ├── NOTICE.txt │ ├── README.md │ ├── SConstruct │ ├── configure │ ├── epid │ │ ├── common-testhelper │ │ │ ├── 1.1 │ │ │ │ ├── epid_params-testhelper.cc │ │ │ │ ├── epid_params-testhelper.h │ │ │ │ ├── testdata │ │ │ │ │ ├── grp01 │ │ │ │ │ │ └── member0 │ │ │ │ │ │ │ └── sig_bsn0_msg_0_255_sha256.inc │ │ │ │ │ ├── grp_x │ │ │ │ │ │ ├── corrupted_privrl.inc │ │ │ │ │ │ ├── epid_grpcrt.inc │ │ │ │ │ │ ├── member0 │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_single_entry.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_three_entry.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg1.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn1_msg0.inc │ │ │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ │ │ └── sig_sha256_rndbase_msg1.inc │ │ │ │ │ │ ├── member1 │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ ├── privrevoked │ │ │ │ │ │ │ └── signatures │ │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey000.inc │ │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey001.inc │ │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0_revkey002.inc │ │ │ │ │ │ ├── privrl.inc │ │ │ │ │ │ ├── privrl_single_entry.inc │ │ │ │ │ │ ├── sig_sha256_bsnrnd_msg0.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_first_entry.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_last_entry.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_middle_entry.inc │ │ │ │ │ │ └── sigrl_member0_sig_bsn0_msg0_revoked_single_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_first_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_last_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_middle_entry.inc │ │ │ │ │ └── grprl_revoked_grp_x_single_entry.inc │ │ │ │ ├── verifier_wrapper-testhelper.cc │ │ │ │ └── verifier_wrapper-testhelper.h │ │ │ ├── Makefile │ │ │ ├── bignum_wrapper-testhelper.cc │ │ │ ├── bignum_wrapper-testhelper.h │ │ │ ├── common-testhelper.parts │ │ │ ├── ecgroup_wrapper-testhelper.cc │ │ │ ├── ecgroup_wrapper-testhelper.h │ │ │ ├── ecpoint_wrapper-testhelper.cc │ │ │ ├── ecpoint_wrapper-testhelper.h │ │ │ ├── epid2params_wrapper-testhelper.cc │ │ │ ├── epid2params_wrapper-testhelper.h │ │ │ ├── epid_gtest-testhelper.cc │ │ │ ├── epid_gtest-testhelper.h │ │ │ ├── epid_params-testhelper.cc │ │ │ ├── epid_params-testhelper.h │ │ │ ├── errors-testhelper.h │ │ │ ├── ffelement_wrapper-testhelper.cc │ │ │ ├── ffelement_wrapper-testhelper.h │ │ │ ├── finite_field_wrapper-testhelper.cc │ │ │ ├── finite_field_wrapper-testhelper.h │ │ │ ├── mem_params-testhelper.cc │ │ │ ├── mem_params-testhelper.h │ │ │ ├── member_wrapper-testhelper.cc │ │ │ ├── member_wrapper-testhelper.h │ │ │ ├── octstr-testhelper.cc │ │ │ ├── octstr-testhelper.h │ │ │ ├── prng-testhelper.h │ │ │ ├── testapp-testhelper.cc │ │ │ ├── testapp-testhelper.h │ │ │ ├── testdata │ │ │ │ ├── grp01 │ │ │ │ │ ├── gpubkey.inc │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── sig_bsn0_msg_0_255_sha512.inc │ │ │ │ │ │ ├── sig_test0_sha256_sigrl.inc │ │ │ │ │ │ ├── sig_test0_sha384_sigrl.inc │ │ │ │ │ │ ├── sig_test0_sha512_sigrl.inc │ │ │ │ │ │ ├── sig_test1.inc │ │ │ │ │ │ ├── sig_test1_basename1_sha256.inc │ │ │ │ │ │ ├── sig_test1_sha256.inc │ │ │ │ │ │ ├── sig_test1_sha384.inc │ │ │ │ │ │ └── sig_test1_sha512.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ └── verrl.inc │ │ │ │ ├── grp_x │ │ │ │ │ ├── cmember9 │ │ │ │ │ │ ├── cmpprivkey.inc │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── corrupted_privrl.inc │ │ │ │ │ ├── iprivkey.inc │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── mprivkey.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_rl_singleentry.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg1.inc │ │ │ │ │ │ ├── sig_sha256_bsn1_msg0.inc │ │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha256_rndbase_msg1.inc │ │ │ │ │ │ ├── sig_sha384_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha384_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_rndbase_msg0_no_sigrl.inc │ │ │ │ │ │ ├── sig_sha512_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha512_huge_bsn_msg0.inc │ │ │ │ │ │ └── sig_sha512_rndbase_msg0.inc │ │ │ │ │ ├── member1 │ │ │ │ │ │ ├── mprivkey.inc │ │ │ │ │ │ └── sig_sha256_bsn0_msg0.inc │ │ │ │ │ ├── privrevoked │ │ │ │ │ │ ├── mprivatekey000.inc │ │ │ │ │ │ ├── mprivatekey001.inc │ │ │ │ │ │ ├── mprivatekey002.inc │ │ │ │ │ │ └── signatures │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey000.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey001.inc │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0_revkey002.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── privrl_single_entry_revoked_key000.inc │ │ │ │ │ ├── pubkey.inc │ │ │ │ │ ├── sigrevoked │ │ │ │ │ │ ├── mprivatekey000.inc │ │ │ │ │ │ ├── mprivatekey001.inc │ │ │ │ │ │ └── mprivatekey002.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_first_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_last_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_middle_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha512_rndbase_msg0_revoked_middle_entry.inc │ │ │ │ │ ├── sigrl_single_entry.inc │ │ │ │ │ ├── sigrl_ver_2.inc │ │ │ │ │ └── verrevoked │ │ │ │ │ │ ├── bsn0 │ │ │ │ │ │ ├── mprivkey000.inc │ │ │ │ │ │ ├── mprivkey001.inc │ │ │ │ │ │ ├── mprivkey002.inc │ │ │ │ │ │ ├── sig_revoked0sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha512bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha512bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha512bsn0msg0.inc │ │ │ │ │ │ ├── verrl.inc │ │ │ │ │ │ ├── verrl_1entry.inc │ │ │ │ │ │ ├── verrl_sha384.inc │ │ │ │ │ │ ├── verrl_sha512.inc │ │ │ │ │ │ └── verrl_sha512_256.inc │ │ │ │ │ │ └── bsn1 │ │ │ │ │ │ ├── mprivkey003.inc │ │ │ │ │ │ ├── mprivkey004.inc │ │ │ │ │ │ ├── mprivkey005.inc │ │ │ │ │ │ ├── sig_revoked3sha256bsn1msg0.inc │ │ │ │ │ │ ├── verrl.inc │ │ │ │ │ │ └── verrl_012revoked.inc │ │ │ │ ├── grp_y │ │ │ │ │ ├── cmember9 │ │ │ │ │ │ ├── cmpprivkey.dat │ │ │ │ │ │ └── cmpprivkey.inc │ │ │ │ │ ├── iprivkey.inc │ │ │ │ │ └── pubkey.inc │ │ │ │ ├── grprl.inc │ │ │ │ ├── grprl_revoked_grp_x_first_entry.inc │ │ │ │ ├── grprl_revoked_grp_x_last_entry.inc │ │ │ │ ├── grprl_revoked_grp_x_middle_entry.inc │ │ │ │ ├── grprl_single_entry_revoked_grp_x.inc │ │ │ │ └── ikgf │ │ │ │ │ ├── groupa │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── mprecomp.inc │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── privrl_empty.inc │ │ │ │ │ ├── pubkey.inc │ │ │ │ │ ├── sig_msg0_sha256_sigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_empty_sigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_nosigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey.inc │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ ├── sig_sigrevoked_sha256_bsn0_msg0.inc │ │ │ │ │ ├── sig_test1_basename1_sha256.inc │ │ │ │ │ ├── sigrevokedmember0 │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ └── sigrl_empty.inc │ │ │ │ │ ├── groupb │ │ │ │ │ ├── member0 │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ └── sig_grouprevoked_sha256_bsn0_msg0.inc │ │ │ │ │ └── grprl.inc │ │ │ ├── unittests │ │ │ │ ├── bignum_wrapper-test.cc │ │ │ │ ├── ecgroup_wrapper-test.cc │ │ │ │ ├── ecpoint_wrapper-test.cc │ │ │ │ ├── ffelement_wrapper-test.cc │ │ │ │ ├── finite_field_wrapper-test.cc │ │ │ │ └── main-test.cc │ │ │ ├── verifier_wrapper-testhelper.cc │ │ │ └── verifier_wrapper-testhelper.h │ │ ├── common │ │ │ ├── 1.1 │ │ │ │ ├── file_parser.h │ │ │ │ ├── src │ │ │ │ │ ├── commitment.c │ │ │ │ │ ├── commitment.h │ │ │ │ │ ├── epid11params.c │ │ │ │ │ ├── epid11params.h │ │ │ │ │ ├── epid11params_tate.inc │ │ │ │ │ ├── file_parser.c │ │ │ │ │ ├── grouppubkey.c │ │ │ │ │ └── grouppubkey.h │ │ │ │ ├── types.h │ │ │ │ └── unittests │ │ │ │ │ └── file_parser-test.cc │ │ │ ├── Makefile │ │ │ ├── bitsupplier.h │ │ │ ├── common.parts │ │ │ ├── epiddefs.h │ │ │ ├── errors.h │ │ │ ├── file_parser.h │ │ │ ├── math │ │ │ │ ├── bignum.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecgroup.h │ │ │ │ ├── finitefield.h │ │ │ │ ├── hash.h │ │ │ │ ├── pairing.h │ │ │ │ ├── printutils.h │ │ │ │ ├── src │ │ │ │ │ ├── bignum-internal.h │ │ │ │ │ ├── bignum.c │ │ │ │ │ ├── ecdsa_sign.c │ │ │ │ │ ├── ecdsa_verify.c │ │ │ │ │ ├── ecgroup-internal.h │ │ │ │ │ ├── ecgroup.c │ │ │ │ │ ├── finitefield-internal.h │ │ │ │ │ ├── finitefield.c │ │ │ │ │ ├── pairing-internal.h │ │ │ │ │ ├── pairing.c │ │ │ │ │ ├── printutils.c │ │ │ │ │ ├── sha256.c │ │ │ │ │ ├── tatepairing-internal.h │ │ │ │ │ └── tatepairing.c │ │ │ │ ├── tatepairing.h │ │ │ │ └── unittests │ │ │ │ │ ├── bignum-test.cc │ │ │ │ │ ├── ecdsa_sign-test.cc │ │ │ │ │ ├── ecdsa_verify-test.cc │ │ │ │ │ ├── ecgroup-test.cc │ │ │ │ │ ├── ffelement-test.cc │ │ │ │ │ ├── finitefield-test.cc │ │ │ │ │ ├── hash-test.cc │ │ │ │ │ ├── main-test.cc │ │ │ │ │ ├── octstrconvert-test.cc │ │ │ │ │ ├── pairing-test.cc │ │ │ │ │ ├── printutils-test.cc │ │ │ │ │ └── tatepairing-test.cc │ │ │ ├── src │ │ │ │ ├── commitment.c │ │ │ │ ├── commitment.h │ │ │ │ ├── endian_convert.h │ │ │ │ ├── epid2params.c │ │ │ │ ├── epid2params.h │ │ │ │ ├── epid2params_ate.inc │ │ │ │ ├── errors.c │ │ │ │ ├── file_parser-internal.h │ │ │ │ ├── file_parser.c │ │ │ │ ├── grouppubkey.c │ │ │ │ ├── grouppubkey.h │ │ │ │ ├── hashsize.c │ │ │ │ ├── hashsize.h │ │ │ │ ├── memory.c │ │ │ │ ├── memory.h │ │ │ │ ├── sigrlvalid.c │ │ │ │ ├── sigrlvalid.h │ │ │ │ ├── stack.c │ │ │ │ └── stack.h │ │ │ ├── stdtypes.h │ │ │ ├── tinycommon.parts │ │ │ ├── types.h │ │ │ └── unittests │ │ │ │ └── file_parser-test.cc │ │ ├── member │ │ │ ├── Makefile │ │ │ ├── api.h │ │ │ ├── member.parts │ │ │ ├── software_member.h │ │ │ ├── src │ │ │ │ ├── allowed_basenames.c │ │ │ │ ├── allowed_basenames.h │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── decompress_privkey.c │ │ │ │ ├── get_sigsize.c │ │ │ │ ├── hash_basename.c │ │ │ │ ├── hash_basename.h │ │ │ │ ├── join.c │ │ │ │ ├── join_commitment.c │ │ │ │ ├── join_commitment.h │ │ │ │ ├── nrprove.c │ │ │ │ ├── nrprove.h │ │ │ │ ├── nrprove_commitment.c │ │ │ │ ├── nrprove_commitment.h │ │ │ │ ├── precomp.c │ │ │ │ ├── precomp.h │ │ │ │ ├── presig-internal.h │ │ │ │ ├── presig.c │ │ │ │ ├── privateexp.c │ │ │ │ ├── privateexp.h │ │ │ │ ├── provision_bulk.c │ │ │ │ ├── provision_compressed.c │ │ │ │ ├── provision_join.c │ │ │ │ ├── resize.c │ │ │ │ ├── resize.h │ │ │ │ ├── sign.c │ │ │ │ ├── sign_commitment.c │ │ │ │ ├── sign_commitment.h │ │ │ │ ├── signbasic.c │ │ │ │ ├── signbasic.h │ │ │ │ ├── startup.c │ │ │ │ ├── storage.c │ │ │ │ ├── storage.h │ │ │ │ ├── validatekey.c │ │ │ │ ├── validatekey.h │ │ │ │ ├── write_precomp.c │ │ │ │ └── write_precomp.h │ │ │ ├── tiny │ │ │ │ ├── math │ │ │ │ │ ├── efq.h │ │ │ │ │ ├── efq2.h │ │ │ │ │ ├── fp.h │ │ │ │ │ ├── fq.h │ │ │ │ │ ├── fq12.h │ │ │ │ │ ├── fq2.h │ │ │ │ │ ├── fq6.h │ │ │ │ │ ├── hashwrap.h │ │ │ │ │ ├── math.parts │ │ │ │ │ ├── mathdefs.h │ │ │ │ │ ├── mathtypes.h │ │ │ │ │ ├── pairing.h │ │ │ │ │ ├── serialize.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── src │ │ │ │ │ │ ├── efq.c │ │ │ │ │ │ ├── efq2.c │ │ │ │ │ │ ├── fp.c │ │ │ │ │ │ ├── fq.c │ │ │ │ │ │ ├── fq12.c │ │ │ │ │ │ ├── fq2.c │ │ │ │ │ │ ├── fq6.c │ │ │ │ │ │ ├── hashwrap.c │ │ │ │ │ │ ├── pairing.c │ │ │ │ │ │ ├── serialize.c │ │ │ │ │ │ ├── sha256.c │ │ │ │ │ │ ├── sha512.c │ │ │ │ │ │ └── vli.c │ │ │ │ │ ├── unittests │ │ │ │ │ │ ├── cmp-testhelper.cc │ │ │ │ │ │ ├── cmp-testhelper.h │ │ │ │ │ │ ├── efq-test.cc │ │ │ │ │ │ ├── efq2-test.cc │ │ │ │ │ │ ├── fp-test.cc │ │ │ │ │ │ ├── fq-test.cc │ │ │ │ │ │ ├── fq12-test.cc │ │ │ │ │ │ ├── fq2-test.cc │ │ │ │ │ │ ├── fq6-test.cc │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── onetimepad-test.cc │ │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ │ ├── onetimepad.h │ │ │ │ │ │ ├── pairing-test.cc │ │ │ │ │ │ ├── serialize-test.cc │ │ │ │ │ │ ├── sha256-test.cc │ │ │ │ │ │ ├── sha512-test.cc │ │ │ │ │ │ ├── utest.parts │ │ │ │ │ │ └── vli-test.cc │ │ │ │ │ └── vli.h │ │ │ │ ├── src │ │ │ │ │ ├── allowed_basenames.c │ │ │ │ │ ├── allowed_basenames.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── createjoinrequest.c │ │ │ │ │ ├── decompresskey.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── native_types.h │ │ │ │ │ ├── nrprove.c │ │ │ │ │ ├── nrprove.h │ │ │ │ │ ├── presig.c │ │ │ │ │ ├── presig_compute.c │ │ │ │ │ ├── presig_compute.h │ │ │ │ │ ├── provisioncompressed.c │ │ │ │ │ ├── provisioncredential.c │ │ │ │ │ ├── provisionkey.c │ │ │ │ │ ├── registerbasename.c │ │ │ │ │ ├── serialize.c │ │ │ │ │ ├── serialize.h │ │ │ │ │ ├── sethashalg.c │ │ │ │ │ ├── setsigrl.c │ │ │ │ │ ├── sign.c │ │ │ │ │ ├── signbasic.c │ │ │ │ │ ├── signbasic.h │ │ │ │ │ ├── startup.c │ │ │ │ │ ├── validate.c │ │ │ │ │ └── validate.h │ │ │ │ ├── stdlib │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── src │ │ │ │ │ │ └── tiny_stdlib.c │ │ │ │ │ ├── tiny_stdlib.h │ │ │ │ │ └── tiny_stdlib.parts │ │ │ │ └── unittests │ │ │ │ │ ├── allowed_basenames-test.cc │ │ │ │ │ ├── context-test.cc │ │ │ │ │ ├── decompress_privkey-test.cc │ │ │ │ │ ├── get_sigsize-test.cc │ │ │ │ │ ├── internal │ │ │ │ │ ├── nr_prove-test.cc │ │ │ │ │ ├── presig_compute-test.cc │ │ │ │ │ ├── serialize-test.cc │ │ │ │ │ ├── signbasic-test.cc │ │ │ │ │ └── validate-test.cc │ │ │ │ │ ├── join_request-test.cc │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ ├── member-testhelper.cc │ │ │ │ │ ├── member-testhelper.h │ │ │ │ │ ├── presig-test.cc │ │ │ │ │ ├── provision_compressed-test.cc │ │ │ │ │ ├── provision_credential-test.cc │ │ │ │ │ ├── provision_key-test.cc │ │ │ │ │ ├── sign-test.cc │ │ │ │ │ └── utest.parts │ │ │ ├── tinymember.parts │ │ │ ├── tpm2 │ │ │ │ ├── commit.h │ │ │ │ ├── context.h │ │ │ │ ├── createprimary.h │ │ │ │ ├── getrandom.h │ │ │ │ ├── ibm_tss │ │ │ │ │ ├── commit.c │ │ │ │ │ ├── context.c │ │ │ │ │ ├── conversion.c │ │ │ │ │ ├── conversion.h │ │ │ │ │ ├── createprimary.c │ │ │ │ │ ├── getrandom.c │ │ │ │ │ ├── load_external.c │ │ │ │ │ ├── nv.c │ │ │ │ │ ├── printtss.c │ │ │ │ │ ├── printtss.h │ │ │ │ │ ├── sign.c │ │ │ │ │ └── state.h │ │ │ │ ├── load_external.h │ │ │ │ ├── nv.h │ │ │ │ ├── sign.h │ │ │ │ ├── src │ │ │ │ │ ├── commit.c │ │ │ │ │ ├── context.c │ │ │ │ │ ├── createprimary.c │ │ │ │ │ ├── getrandom.c │ │ │ │ │ ├── load_external.c │ │ │ │ │ ├── nv.c │ │ │ │ │ ├── sign.c │ │ │ │ │ └── state.h │ │ │ │ ├── tpm2.parts │ │ │ │ └── unittests │ │ │ │ │ ├── commit-simulator-test.cc │ │ │ │ │ ├── commit-test.cc │ │ │ │ │ ├── context-test.cc │ │ │ │ │ ├── conversion-tss-test.cc │ │ │ │ │ ├── createprimary-test.cc │ │ │ │ │ ├── getrandom-simulator-test.cc │ │ │ │ │ ├── getrandom-test.cc │ │ │ │ │ ├── getrandom-tss-test.cc │ │ │ │ │ ├── load_external-simulator-test.cc │ │ │ │ │ ├── load_external-test.cc │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ ├── nv-test.cc │ │ │ │ │ ├── sign-simulator-test.cc │ │ │ │ │ ├── sign-test.cc │ │ │ │ │ ├── tpm2-testhelper.cc │ │ │ │ │ ├── tpm2-testhelper.h │ │ │ │ │ ├── tpm2_wrapper-testhelper.cc │ │ │ │ │ └── tpm2_wrapper-testhelper.h │ │ │ ├── tpm_member.h │ │ │ └── unittests │ │ │ │ ├── context-test.cc │ │ │ │ ├── decompress_privkey-test.cc │ │ │ │ ├── get_sigsize-test.cc │ │ │ │ ├── iskeyvalid-test.cc │ │ │ │ ├── join_request-test.cc │ │ │ │ ├── main-test.cc │ │ │ │ ├── member-testhelper.cc │ │ │ │ ├── member-testhelper.h │ │ │ │ ├── nr_prove-test.cc │ │ │ │ ├── presig-test.cc │ │ │ │ ├── privateexp-test.cc │ │ │ │ ├── provision_compressed-test.cc │ │ │ │ ├── provision_credential-test.cc │ │ │ │ ├── provision_key-test.cc │ │ │ │ ├── resize-test.cc │ │ │ │ ├── sign-test.cc │ │ │ │ ├── signbasic-test.cc │ │ │ │ └── storage-test.cc │ │ └── verifier │ │ │ ├── 1.1 │ │ │ ├── api.h │ │ │ ├── src │ │ │ │ ├── check_privrl_entry.c │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── nrverify.c │ │ │ │ ├── sigs_linked.c │ │ │ │ ├── verify.c │ │ │ │ └── verifybasic.c │ │ │ └── unittests │ │ │ │ ├── check_privrl_entry-test.cc │ │ │ │ ├── context-test.cc │ │ │ │ ├── nrverify-test.cc │ │ │ │ ├── sigs_linked-test.cc │ │ │ │ ├── testdata │ │ │ │ └── verifier_precmp.inc │ │ │ │ ├── verifier-testhelper.cc │ │ │ │ ├── verifier-testhelper.h │ │ │ │ ├── verify-test.cc │ │ │ │ └── verifybasic-test.cc │ │ │ ├── Makefile │ │ │ ├── api.h │ │ │ ├── src │ │ │ ├── check_privrl_entry.c │ │ │ ├── context.c │ │ │ ├── context.h │ │ │ ├── nrverify.c │ │ │ ├── sigs_linked.c │ │ │ ├── verify.c │ │ │ └── verifybasic.c │ │ │ ├── unittests │ │ │ ├── check_privrl_entry-test.cc │ │ │ ├── context-test.cc │ │ │ ├── main-test.cc │ │ │ ├── nrverify-test.cc │ │ │ ├── sigs_linked-test.cc │ │ │ ├── testdata │ │ │ │ └── sigrl │ │ │ │ │ ├── pub_key_sigrl_verify.inc │ │ │ │ │ ├── signature_sigrl_first.inc │ │ │ │ │ ├── signature_sigrl_last.inc │ │ │ │ │ ├── signature_sigrl_middle.inc │ │ │ │ │ ├── sigrl_five_entries.inc │ │ │ │ │ └── sigrl_single_entry.inc │ │ │ ├── verifier-testhelper.cc │ │ │ ├── verifier-testhelper.h │ │ │ ├── verify-test.cc │ │ │ └── verifybasic-test.cc │ │ │ └── verifier.parts │ ├── example │ │ ├── Makefile │ │ └── compressed_data │ │ │ ├── README.md │ │ │ ├── cacert.bin │ │ │ ├── compressed_data.parts │ │ │ ├── groupa │ │ │ ├── member0 │ │ │ │ └── mprivkey.dat │ │ │ ├── member1 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember0 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember1 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember2 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrl.bin │ │ │ ├── privrl_empty.bin │ │ │ ├── pubkey.bin │ │ │ ├── sigrevokedmember0 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrevokedmember1 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrevokedmember2 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrl.bin │ │ │ └── sigrl_empty.bin │ │ │ ├── groupb │ │ │ └── privrl.bin │ │ │ ├── grprl.bin │ │ │ ├── grprl_empty.bin │ │ │ ├── mprivkey.dat │ │ │ ├── privrl.bin │ │ │ ├── pubkey.bin │ │ │ └── sigrl.bin │ └── ext │ │ ├── argtable3 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── argtable3.c │ │ ├── argtable3.h │ │ └── argtable3.parts │ │ └── ipp │ │ └── include │ │ ├── ippbase.h │ │ ├── ippcp.h │ │ ├── ippcpdefs.h │ │ ├── ippdefs.h │ │ ├── ipptypes.h │ │ └── sgx_ippcp.h ├── rdrand │ ├── rdrand.h │ └── src │ │ ├── Makefile.in │ │ ├── README │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── main.c │ │ ├── rdrand.c │ │ └── rdrand.h ├── sgx_libm │ ├── ia32 │ │ ├── acos_wmt.S │ │ ├── acosf_wmt.S │ │ ├── acosh_wmt.S │ │ ├── acoshf_wmt.S │ │ ├── acoshl.S │ │ ├── acosl.S │ │ ├── asin_wmt.S │ │ ├── asinf_wmt.S │ │ ├── asinh_wmt.S │ │ ├── asinhf_wmt.S │ │ ├── asinhl.S │ │ ├── asinl.S │ │ ├── atan2_wmt.S │ │ ├── atan2dl.S │ │ ├── atan2f_wmt.S │ │ ├── atan2l.S │ │ ├── atan_wmt.S │ │ ├── atandl_table.S │ │ ├── atanf_wmt.S │ │ ├── atanh_wmt.S │ │ ├── atanhf_wmt.S │ │ ├── atanhl.S │ │ ├── atanl.S │ │ ├── atanl_table.S │ │ ├── cabs.S │ │ ├── cabsf.S │ │ ├── cabsl.S │ │ ├── cacos.S │ │ ├── cacosf.S │ │ ├── cacosh.S │ │ ├── cacoshf.S │ │ ├── cacoshl.S │ │ ├── cacosl.S │ │ ├── carg.S │ │ ├── cargf.S │ │ ├── cargl.S │ │ ├── casin.S │ │ ├── casinh.S │ │ ├── casinhf.S │ │ ├── casinhl.S │ │ ├── casinl.S │ │ ├── catan.S │ │ ├── catanh.S │ │ ├── catanhf.S │ │ ├── catanhl.S │ │ ├── catanl.S │ │ ├── cbrt_wmt.S │ │ ├── cbrtf_wmt.S │ │ ├── cbrtl.S │ │ ├── cbrtl_table.S │ │ ├── ccos.S │ │ ├── ccosh.S │ │ ├── ccoshf.S │ │ ├── ccoshl.S │ │ ├── ccosl.S │ │ ├── ceil_wmt.S │ │ ├── ceilf_gen.S │ │ ├── ceill.S │ │ ├── cexp_gen.S │ │ ├── cexpf_gen.S │ │ ├── cexpl.S │ │ ├── cimag.S │ │ ├── cimagf.S │ │ ├── cimagl.S │ │ ├── clog10.S │ │ ├── clog10l.S │ │ ├── clog_gen.S │ │ ├── clogf_wmt.S │ │ ├── clogl.S │ │ ├── complex_real.S │ │ ├── conj.S │ │ ├── conjf.S │ │ ├── conjl.S │ │ ├── copysign_wmt.S │ │ ├── copysignf_wmt.S │ │ ├── copysignl.S │ │ ├── cos_wmt.S │ │ ├── cosdl.S │ │ ├── cosf_wmt.S │ │ ├── cosh_wmt.S │ │ ├── coshf_wmt.S │ │ ├── coshl.S │ │ ├── cosl.S │ │ ├── cpow.S │ │ ├── cpowl.S │ │ ├── cproj.S │ │ ├── cprojf.S │ │ ├── cprojl.S │ │ ├── creal.S │ │ ├── crealf.S │ │ ├── creall.S │ │ ├── csin.S │ │ ├── csinh.S │ │ ├── csinhf.S │ │ ├── csinhl.S │ │ ├── csinl.S │ │ ├── csqrt_wmt.S │ │ ├── csqrtf_wmt.S │ │ ├── csqrtl.S │ │ ├── ctan.S │ │ ├── ctanh.S │ │ ├── ctanhf.S │ │ ├── ctanhl.S │ │ ├── ctanl.S │ │ ├── dpml_ux_bessel.S │ │ ├── dpml_ux_log.S │ │ ├── dpml_ux_ops.S │ │ ├── dpml_ux_ops_64.S │ │ ├── dpml_ux_sqrt.S │ │ ├── dpml_ux_trig.S │ │ ├── erf.S │ │ ├── erfc.S │ │ ├── erfcf.S │ │ ├── erfcl.S │ │ ├── erff.S │ │ ├── erfl.S │ │ ├── exp10_wmt.S │ │ ├── exp10f_wmt.S │ │ ├── exp10l.S │ │ ├── exp2_wmt.S │ │ ├── exp2f_wmt.S │ │ ├── exp2l.S │ │ ├── exp_table.S │ │ ├── exp_wmt.S │ │ ├── expf_wmt.S │ │ ├── expl.S │ │ ├── expl_table.S │ │ ├── expm1_wmt.S │ │ ├── expm1f_wmt.S │ │ ├── expm1l.S │ │ ├── fabs.S │ │ ├── fabsf.S │ │ ├── fabsl.S │ │ ├── fdim_wmt.S │ │ ├── fdimf_wmt.S │ │ ├── fdiml.S │ │ ├── feclearexcept.S │ │ ├── fedisableexcept.S │ │ ├── feenableexcept.S │ │ ├── fegetenv.S │ │ ├── fegetexcept.S │ │ ├── fegetexceptflag.S │ │ ├── fegetround.S │ │ ├── feholdexcept.S │ │ ├── feraiseexcept.S │ │ ├── fesetenv.S │ │ ├── fesetexceptflag.S │ │ ├── fesetround.S │ │ ├── fetestexcept.S │ │ ├── feupdateenv.S │ │ ├── floor_wmt.S │ │ ├── floorf_gen.S │ │ ├── floorl.S │ │ ├── fma.S │ │ ├── fmaf_wmt.S │ │ ├── fmal.S │ │ ├── fmax_wmt.S │ │ ├── fmaxf_wmt.S │ │ ├── fmaxl.S │ │ ├── fmin_wmt.S │ │ ├── fminf_wmt.S │ │ ├── fminl.S │ │ ├── fmod_wmt.S │ │ ├── fmodf.S │ │ ├── fmodl.S │ │ ├── fpclassify.S │ │ ├── frexp_wmt.S │ │ ├── frexpf.S │ │ ├── frexpl.S │ │ ├── hypot_wmt.S │ │ ├── hypotf.S │ │ ├── hypotl.S │ │ ├── ilogb_wmt.S │ │ ├── ilogbf.S │ │ ├── ilogbl.S │ │ ├── intel_quad_exception.S │ │ ├── isfinite.S │ │ ├── isinf.S │ │ ├── isnan.S │ │ ├── isnormal.S │ │ ├── j0.S │ │ ├── j0f.S │ │ ├── j0l.S │ │ ├── j1.S │ │ ├── j1f.S │ │ ├── j1l.S │ │ ├── jn.S │ │ ├── jnf.S │ │ ├── jnl.S │ │ ├── l2q.S │ │ ├── ldexp_wmt.S │ │ ├── ldexpf.S │ │ ├── ldexpl.S │ │ ├── lgamma.S │ │ ├── lgammaf.S │ │ ├── lgammal.S │ │ ├── libm_atan2l_k80.S │ │ ├── libm_coshl_k80.S │ │ ├── libm_cosl_k80.S │ │ ├── libm_exp_k32.S │ │ ├── libm_expl_k80.S │ │ ├── libm_hypot2l_k80.S │ │ ├── libm_log1pl_k80.S │ │ ├── libm_log_k32.S │ │ ├── libm_logl.S │ │ ├── libm_logl_k80.S │ │ ├── libm_normalizel_k80.S │ │ ├── libm_recacoshl_k80.S │ │ ├── libm_recacosl_recasinl_k80.S │ │ ├── libm_reduce_pi04d.S │ │ ├── libm_reduce_pi04l.S │ │ ├── libm_scalbl_k80.S │ │ ├── libm_sincos_huge.S │ │ ├── libm_sincos_k32.S │ │ ├── libm_sinhl_k80.S │ │ ├── libm_sinl_k80.S │ │ ├── libm_strtoull.S │ │ ├── libm_tancot_huge.S │ │ ├── llrint.S │ │ ├── llrintf.S │ │ ├── llrintl.S │ │ ├── llround_wmt.S │ │ ├── llroundf_wmt.S │ │ ├── llroundl.S │ │ ├── log10_wmt.S │ │ ├── log10f_wmt.S │ │ ├── log10l.S │ │ ├── log10l_table.S │ │ ├── log1p_wmt.S │ │ ├── log1pf_wmt.S │ │ ├── log1pl.S │ │ ├── log2_wmt.S │ │ ├── log2f_wmt.S │ │ ├── log2l.S │ │ ├── log2l_table.S │ │ ├── log_table.S │ │ ├── log_wmt.S │ │ ├── logb_wmt.S │ │ ├── logbf.S │ │ ├── logbl.S │ │ ├── logf_table.S │ │ ├── logf_wmt.S │ │ ├── logl.S │ │ ├── logl_table.S │ │ ├── lrint_wmt.S │ │ ├── lrintf_wmt.S │ │ ├── lrintl.S │ │ ├── lround_wmt.S │ │ ├── lroundf_wmt.S │ │ ├── lroundl.S │ │ ├── modf_wmt.S │ │ ├── modff.S │ │ ├── modfl.S │ │ ├── nan.S │ │ ├── nearbyint_wmt.S │ │ ├── nearbyintf_gen.S │ │ ├── nearbyintl.S │ │ ├── nextafter_wmt.S │ │ ├── nextafterf_wmt.S │ │ ├── nextafterl.S │ │ ├── nexttoward_wmt.S │ │ ├── nexttowardf_wmt.S │ │ ├── nexttowardl.S │ │ ├── pow_wmt.S │ │ ├── powf_wmt.S │ │ ├── powl.S │ │ ├── q2l.S │ │ ├── rcp_table.S │ │ ├── remainder.S │ │ ├── remainderf.S │ │ ├── remainderl.S │ │ ├── remquo.S │ │ ├── remquof.S │ │ ├── remquol.S │ │ ├── rint_gen.S │ │ ├── rintf_gen.S │ │ ├── rintl.S │ │ ├── round_wmt.S │ │ ├── roundf_wmt.S │ │ ├── roundl.S │ │ ├── scalb_wmt.S │ │ ├── scalbf.S │ │ ├── scalbl.S │ │ ├── scalbln_wmt.S │ │ ├── scalblnf.S │ │ ├── scalblnl.S │ │ ├── scalbn_wmt.S │ │ ├── scalbnf.S │ │ ├── scalbnl.S │ │ ├── signbit.S │ │ ├── significand_wmt.S │ │ ├── significandf.S │ │ ├── significandl.S │ │ ├── sin_wmt.S │ │ ├── sincos_pi4l.S │ │ ├── sincos_wmt.S │ │ ├── sincosdl_table.S │ │ ├── sincosf_wmt.S │ │ ├── sincosl.S │ │ ├── sindl.S │ │ ├── sinf_wmt.S │ │ ├── sinh_wmt.S │ │ ├── sinhcosh_wmt.S │ │ ├── sinhcoshl.S │ │ ├── sinhf_wmt.S │ │ ├── sinhl.S │ │ ├── sinl.S │ │ ├── sqrt_tab_t.S │ │ ├── sqrt_wmt.S │ │ ├── sqrtf_wmt.S │ │ ├── sqrtl.S │ │ ├── tan_wmt.S │ │ ├── tanf_wmt.S │ │ ├── tanh_wmt.S │ │ ├── tanhf_wmt.S │ │ ├── tanhl.S │ │ ├── tanl.S │ │ ├── tgamma.S │ │ ├── tgammaf.S │ │ ├── tgammal.S │ │ ├── trig_pi_bits.S │ │ ├── trunc_wmt.S │ │ ├── truncf.S │ │ ├── truncl.S │ │ ├── y0.S │ │ ├── y0f.S │ │ ├── y0l.S │ │ ├── y1.S │ │ ├── y1f.S │ │ ├── y1l.S │ │ ├── yn.S │ │ ├── ynf.S │ │ └── ynl.S │ ├── intel64 │ │ ├── acos.S │ │ ├── acosf_gen.S │ │ ├── acosh_gen.S │ │ ├── acoshf_gen.S │ │ ├── acoshl.S │ │ ├── acosl.S │ │ ├── asin.S │ │ ├── asinf_gen.S │ │ ├── asinh_gen.S │ │ ├── asinhf_gen.S │ │ ├── asinhl.S │ │ ├── asinl.S │ │ ├── atan2.S │ │ ├── atan2dl.S │ │ ├── atan2f_gen.S │ │ ├── atan2l.S │ │ ├── atan_gen.S │ │ ├── atandl_table.S │ │ ├── atanf_gen.S │ │ ├── atanh_gen.S │ │ ├── atanhf_gen.S │ │ ├── atanhl.S │ │ ├── atanl.S │ │ ├── atanl_table.S │ │ ├── cabs.S │ │ ├── cabsf.S │ │ ├── cabsl.S │ │ ├── cacos.S │ │ ├── cacosh.S │ │ ├── cacoshl.S │ │ ├── cacosl.S │ │ ├── carg.S │ │ ├── cargf.S │ │ ├── cargl.S │ │ ├── casin.S │ │ ├── casinh.S │ │ ├── casinhl.S │ │ ├── casinl.S │ │ ├── catan.S │ │ ├── catanh.S │ │ ├── catanhl.S │ │ ├── catanl.S │ │ ├── cbrt_gen.S │ │ ├── cbrtf_gen.S │ │ ├── cbrtl.S │ │ ├── cbrtl_table.S │ │ ├── ccos.S │ │ ├── ccosh.S │ │ ├── ccoshl.S │ │ ├── ccosl.S │ │ ├── ceil_gen.S │ │ ├── ceilf_gen.S │ │ ├── ceill.S │ │ ├── cexp.S │ │ ├── cexpf.S │ │ ├── cexpl.S │ │ ├── cimag.S │ │ ├── cimagf.S │ │ ├── cimagl.S │ │ ├── clog.S │ │ ├── clog10.S │ │ ├── clog10l.S │ │ ├── clogf.S │ │ ├── clogl.S │ │ ├── complex_real.S │ │ ├── conj.S │ │ ├── conjf.S │ │ ├── conjl.S │ │ ├── copysign_gen.S │ │ ├── copysignf_gen.S │ │ ├── copysignl.S │ │ ├── cos_gen.S │ │ ├── cosdl.S │ │ ├── cosf_gen.S │ │ ├── cosh_gen.S │ │ ├── coshf_gen.S │ │ ├── coshl.S │ │ ├── cosl.S │ │ ├── cpow.S │ │ ├── cpowl.S │ │ ├── cproj.S │ │ ├── cprojf.S │ │ ├── cprojl.S │ │ ├── creal.S │ │ ├── crealf.S │ │ ├── creall.S │ │ ├── csin.S │ │ ├── csinh.S │ │ ├── csinhl.S │ │ ├── csinl.S │ │ ├── csqrt.S │ │ ├── csqrtf.S │ │ ├── csqrtl.S │ │ ├── ctan.S │ │ ├── ctanh.S │ │ ├── ctanhl.S │ │ ├── ctanl.S │ │ ├── dpml_ux_bessel.S │ │ ├── dpml_ux_log.S │ │ ├── dpml_ux_ops.S │ │ ├── dpml_ux_ops_64.S │ │ ├── dpml_ux_sqrt.S │ │ ├── dpml_ux_trig.S │ │ ├── erf.S │ │ ├── erfc.S │ │ ├── erfcf.S │ │ ├── erfcl.S │ │ ├── erff.S │ │ ├── erfl.S │ │ ├── exp10_gen.S │ │ ├── exp10f_gen.S │ │ ├── exp10l.S │ │ ├── exp2_gen.S │ │ ├── exp2f_gen.S │ │ ├── exp2l.S │ │ ├── exp_gen.S │ │ ├── exp_table.S │ │ ├── expf_gen.S │ │ ├── expf_table.S │ │ ├── expl.S │ │ ├── expl_table.S │ │ ├── expm1_gen.S │ │ ├── expm1f_gen.S │ │ ├── expm1l.S │ │ ├── fabs.S │ │ ├── fabsf.S │ │ ├── fabsl.S │ │ ├── fdim_gen.S │ │ ├── fdimf_gen.S │ │ ├── fdiml.S │ │ ├── feclearexcept.S │ │ ├── fedisableexcept.S │ │ ├── feenableexcept.S │ │ ├── fegetexcept.S │ │ ├── fegetexceptflag.S │ │ ├── fegetround.S │ │ ├── feholdexcept.S │ │ ├── feraiseexcept.S │ │ ├── fesetenv.S │ │ ├── fesetexceptflag.S │ │ ├── fesetround.S │ │ ├── fetestexcept.S │ │ ├── feupdateenv.S │ │ ├── floor_gen.S │ │ ├── floorf_gen.S │ │ ├── floorl.S │ │ ├── fma_gen.S │ │ ├── fmaf_gen.S │ │ ├── fmal.S │ │ ├── fmax_gen.S │ │ ├── fmaxf_gen.S │ │ ├── fmaxl.S │ │ ├── fmin_gen.S │ │ ├── fminf_gen.S │ │ ├── fminl.S │ │ ├── fmod_gen.S │ │ ├── fmodf_gen.S │ │ ├── fmodl.S │ │ ├── fpclassify.S │ │ ├── frexp_gen.S │ │ ├── frexpf.S │ │ ├── frexpl.S │ │ ├── hypot_gen.S │ │ ├── hypotf_gen.S │ │ ├── hypotl.S │ │ ├── ilogb_gen.S │ │ ├── ilogbf.S │ │ ├── ilogbl.S │ │ ├── intel_quad_exception.S │ │ ├── isfinite.S │ │ ├── isinf.S │ │ ├── isnan.S │ │ ├── isnormal.S │ │ ├── j0.S │ │ ├── j0f.S │ │ ├── j0l.S │ │ ├── j1.S │ │ ├── j1f.S │ │ ├── j1l.S │ │ ├── jn.S │ │ ├── jnf.S │ │ ├── jnl.S │ │ ├── l2q.S │ │ ├── ldexp_gen.S │ │ ├── ldexpf.S │ │ ├── ldexpl.S │ │ ├── lgamma.S │ │ ├── lgammaf.S │ │ ├── lgammal.S │ │ ├── libm_atan2_k64.S │ │ ├── libm_atan2l_k80.S │ │ ├── libm_cosh_k64.S │ │ ├── libm_coshl_k80.S │ │ ├── libm_cosl_k80.S │ │ ├── libm_exp_k32.S │ │ ├── libm_exp_k64.S │ │ ├── libm_expl_k80.S │ │ ├── libm_fegetenv.S │ │ ├── libm_hypot2_k64.S │ │ ├── libm_hypot2l_k80.S │ │ ├── libm_log1pl_k80.S │ │ ├── libm_log_k32.S │ │ ├── libm_log_k64.S │ │ ├── libm_logl.S │ │ ├── libm_logl_k80.S │ │ ├── libm_mul_k64.S │ │ ├── libm_normalizel_k80.S │ │ ├── libm_recacoshl_k80.S │ │ ├── libm_recacosl_recasinl_k80.S │ │ ├── libm_reduce_pi04d.S │ │ ├── libm_reduce_pi04l.S │ │ ├── libm_reduce_pio2.S │ │ ├── libm_scalbl_k80.S │ │ ├── libm_sincos_k32.S │ │ ├── libm_sincos_k64.S │ │ ├── libm_sinh_k64.S │ │ ├── libm_sinhl_k80.S │ │ ├── libm_sinl_k80.S │ │ ├── libm_sse2_sincos.S │ │ ├── libm_strtoull.S │ │ ├── llrint_gen.S │ │ ├── llrintf_gen.S │ │ ├── llrintl.S │ │ ├── llround_gen.S │ │ ├── llroundf_gen.S │ │ ├── llroundl.S │ │ ├── log10_gen.S │ │ ├── log10f_gen.S │ │ ├── log10l.S │ │ ├── log10l_table.S │ │ ├── log1p_gen.S │ │ ├── log1pf_gen.S │ │ ├── log1pl.S │ │ ├── log2_gen.S │ │ ├── log2f_gen.S │ │ ├── log2l.S │ │ ├── log2l_table.S │ │ ├── log_gen.S │ │ ├── log_table.S │ │ ├── logb_gen.S │ │ ├── logbf.S │ │ ├── logbl.S │ │ ├── logf_gen.S │ │ ├── logf_table.S │ │ ├── logl.S │ │ ├── logl_table.S │ │ ├── lrint_gen.S │ │ ├── lrintf_gen.S │ │ ├── lrintl.S │ │ ├── lround_gen.S │ │ ├── lroundf_gen.S │ │ ├── lroundl.S │ │ ├── modf_gen.S │ │ ├── modff.S │ │ ├── modfl.S │ │ ├── nan.S │ │ ├── nearbyint_gen.S │ │ ├── nearbyintf_gen.S │ │ ├── nearbyintl.S │ │ ├── nextafter_gen.S │ │ ├── nextafterf_gen.S │ │ ├── nextafterl.S │ │ ├── nexttoward_gen.S │ │ ├── nexttowardf_gen.S │ │ ├── nexttowardl.S │ │ ├── pow_gen.S │ │ ├── powf_gen.S │ │ ├── powl.S │ │ ├── q2l.S │ │ ├── rcp_table.S │ │ ├── remainder_gen.S │ │ ├── remainderf_gen.S │ │ ├── remainderl.S │ │ ├── remquo.S │ │ ├── remquof.S │ │ ├── remquol.S │ │ ├── rint_gen.S │ │ ├── rintf_gen.S │ │ ├── rintl.S │ │ ├── round_gen.S │ │ ├── roundf_gen.S │ │ ├── roundl.S │ │ ├── scalb_gen.S │ │ ├── scalbf.S │ │ ├── scalbl.S │ │ ├── scalbln_gen.S │ │ ├── scalblnf.S │ │ ├── scalblnl.S │ │ ├── scalbn_gen.S │ │ ├── scalbnf.S │ │ ├── scalbnl.S │ │ ├── signbit.S │ │ ├── significand_gen.S │ │ ├── significandf_gen.S │ │ ├── significandl.S │ │ ├── sin_gen.S │ │ ├── sincos_gen.S │ │ ├── sincos_pi4l.S │ │ ├── sincosd_table.S │ │ ├── sincosf_gen.S │ │ ├── sincosl.S │ │ ├── sindl.S │ │ ├── sinf_gen.S │ │ ├── sinh_gen.S │ │ ├── sinhf_gen.S │ │ ├── sinhl.S │ │ ├── sinl.S │ │ ├── sqrt.S │ │ ├── sqrt_tab_t.S │ │ ├── sqrtf_gen.S │ │ ├── sqrtl.S │ │ ├── tan_gen.S │ │ ├── tanf_gen.S │ │ ├── tanh_gen.S │ │ ├── tanhf_gen.S │ │ ├── tanhl.S │ │ ├── tanl.S │ │ ├── tgamma.S │ │ ├── tgammaf.S │ │ ├── tgammal.S │ │ ├── trig_pi_bits.S │ │ ├── trunc_gen.S │ │ ├── truncf.S │ │ ├── truncl.S │ │ ├── y0.S │ │ ├── y0f.S │ │ ├── y0l.S │ │ ├── y1.S │ │ ├── y1f.S │ │ ├── y1l.S │ │ ├── yn.S │ │ ├── ynf.S │ │ └── ynl.S │ └── makefile ├── sgxssl │ └── prepare_sgxssl.sh ├── sqlite │ └── src │ │ ├── sqlite3.c │ │ └── sqlite3.h ├── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h └── vtune │ └── linux │ ├── include │ ├── advisor-annotate.h │ ├── advisor_annotate.f90 │ ├── internal │ │ └── ittnotify.h │ ├── ittnotify.f90 │ ├── ittnotify.h │ ├── jitprofiling.h │ ├── legacy │ │ └── ittnotify.h │ ├── libittnotify.h │ ├── llvm_jit_event_listener.hpp │ └── prototype │ │ └── ittnotify.h │ └── sdk │ └── src │ └── ittnotify │ ├── LICENSE.BSD │ ├── LICENSE.GPL │ ├── Makefile │ ├── disable_warnings.h │ ├── ittnotify_config.h │ ├── ittnotify_static.c │ ├── ittnotify_static.h │ ├── ittnotify_types.h │ └── jitprofiling.c ├── linux ├── docker │ ├── Dockerfile │ └── README.md └── installer │ ├── bin │ ├── build-installpkg.sh │ ├── install-sgx-psw.bin.tmpl │ └── install-sgx-sdk.bin.tmpl │ ├── common │ ├── gen_source │ │ └── gen_source.py │ ├── libsgx-enclave-common-dev │ │ ├── BOMs │ │ │ └── sgx-enclave-common-dev_base.txt │ │ ├── Makefile │ │ ├── createTarball.sh │ │ └── installConfig │ ├── libsgx-enclave-common │ │ ├── BOMs │ │ │ ├── sgx-enclave-common_base.txt │ │ │ ├── sgx-enclave-common_x64.txt │ │ │ └── sgx-enclave-common_x86.txt │ │ ├── Makefile │ │ ├── createTarball.sh │ │ ├── install.sh │ │ ├── installConfig.x64 │ │ └── installConfig.x86 │ ├── libsgx-urts │ │ ├── createTarball.sh │ │ └── installConfig │ ├── licenses │ │ └── BOM_license.txt │ ├── psw │ │ ├── BOMs │ │ │ ├── psw_base.txt │ │ │ ├── psw_x64.txt │ │ │ └── psw_x86.txt │ │ ├── Makefile │ │ ├── createTarball.sh │ │ ├── install.sh │ │ ├── installConfig.x64 │ │ └── installConfig.x86 │ └── sdk │ │ ├── BOMs │ │ ├── sdk_base.txt │ │ ├── sdk_x64.txt │ │ └── sdk_x86.txt │ │ ├── Makefile │ │ ├── createTarball.sh │ │ ├── install.sh │ │ ├── installConfig.x64 │ │ ├── installConfig.x86 │ │ └── pkgconfig │ │ └── template │ │ ├── libsgx_uae_service.pc │ │ ├── libsgx_uae_service_sim.pc │ │ ├── libsgx_urts.pc │ │ └── libsgx_urts_sim.pc │ ├── deb │ ├── libsgx-enclave-common-dev │ │ ├── build.sh │ │ └── libsgx-enclave-common-dev-1.0 │ │ │ └── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── docs │ │ │ ├── postinst │ │ │ ├── postrm │ │ │ ├── preinst │ │ │ ├── prerm │ │ │ ├── rules │ │ │ └── source │ │ │ └── format │ ├── libsgx-enclave-common │ │ ├── build.sh │ │ └── libsgx-enclave-common-1.0 │ │ │ └── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── docs │ │ │ ├── postinst │ │ │ ├── postrm │ │ │ ├── preinst │ │ │ ├── prerm │ │ │ ├── rules │ │ │ └── source │ │ │ └── format │ └── libsgx-urts │ │ ├── build.sh │ │ └── libsgx-urts-1.0 │ │ └── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── docs │ │ ├── rules │ │ └── source │ │ └── format │ └── rpm │ ├── psw-dev │ ├── build.sh │ └── sgxpsw-dev.spec │ ├── psw │ ├── build.sh │ └── sgxpsw.spec │ └── sdk │ ├── build.sh │ └── sgxsdk.spec ├── psw ├── Makefile ├── ae │ ├── Makefile │ ├── aesm_service │ │ ├── Makefile │ │ ├── config │ │ │ ├── aesmd_service │ │ │ │ ├── aesmd.conf │ │ │ │ └── aesmd.service │ │ │ └── network │ │ │ │ └── aesmd.conf │ │ └── source │ │ │ ├── CMakeLists.txt │ │ │ ├── bundles │ │ │ ├── CMakeLists.txt │ │ │ ├── ecdsa_quote_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ecdsa_quote_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── epid_quote_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PVEClass.cpp │ │ │ │ ├── PVEClass.h │ │ │ │ ├── QEClass.cpp │ │ │ │ ├── QEClass.h │ │ │ │ ├── aesm_ecdsa.cpp │ │ │ │ ├── aesm_epid_blob.cpp │ │ │ │ ├── aesm_epid_blob.h │ │ │ │ ├── aesm_xegd_blob.cpp │ │ │ │ ├── aesm_xegd_blob.h │ │ │ │ ├── endpoint_select_info.cpp │ │ │ │ ├── endpoint_select_info.h │ │ │ │ ├── epid_endpoint_selection.cpp │ │ │ │ ├── epid_provision_msg1.cpp │ │ │ │ ├── epid_provision_msg2.cpp │ │ │ │ ├── epid_provision_msg4.cpp │ │ │ │ ├── epid_quote_service_bundle.cpp │ │ │ │ ├── epid_utility.cpp │ │ │ │ ├── epid_utility.h │ │ │ │ ├── manifest.json │ │ │ │ ├── prov_msg_size.h │ │ │ │ ├── pve_logic.cpp │ │ │ │ ├── pve_logic.h │ │ │ │ ├── pve_pub_key.cpp │ │ │ │ ├── qe_logic.cpp │ │ │ │ └── qe_logic.h │ │ │ ├── le_launch_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LEClass.cpp │ │ │ │ ├── LEClass.h │ │ │ │ ├── le_launch_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── linux_network_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aesm_encode.cpp │ │ │ │ ├── aesm_http_msg.cpp │ │ │ │ ├── aesm_network.h │ │ │ │ ├── linux_network_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── local_pseop_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PSDAService.cpp │ │ │ │ ├── PSDAService.h │ │ │ │ ├── PSEClass.cpp │ │ │ │ ├── PSEClass.h │ │ │ │ ├── aesm_pse_status.cpp │ │ │ │ ├── aesm_pse_status.h │ │ │ │ ├── interface_psda.cpp │ │ │ │ ├── interface_psda.h │ │ │ │ ├── jhi_proxy.cpp │ │ │ │ ├── jhi_proxy.h │ │ │ │ ├── local_pseop_service_bundle.cpp │ │ │ │ ├── manifest.json │ │ │ │ ├── platform_info_facility.cpp │ │ │ │ ├── platform_info_logic.cpp │ │ │ │ ├── platform_info_logic.h │ │ │ │ ├── pse_op_logic.cpp │ │ │ │ ├── pse_op_logic.h │ │ │ │ ├── pse_op_psda_ocall.cpp │ │ │ │ └── pse_op_vmc_sqlite_ocall.cpp │ │ │ ├── pce_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PCEClass.cpp │ │ │ │ ├── PCEClass.h │ │ │ │ ├── manifest.json │ │ │ │ └── pce_service_bundle.cpp │ │ │ ├── psepr_service_bundle │ │ │ │ ├── BackendInterface │ │ │ │ │ ├── CertificateProvisioningProtocol.cpp │ │ │ │ │ ├── CertificateProvisioningProtocol.h │ │ │ │ │ ├── pse_crypto_helper.cpp │ │ │ │ │ ├── pse_provisioning_msg1.cpp │ │ │ │ │ ├── pse_provisioning_msg2.cpp │ │ │ │ │ ├── pse_provisioning_msg3.cpp │ │ │ │ │ └── pse_provisioning_msg4.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PSEPRClass.cpp │ │ │ │ ├── PSEPRClass.h │ │ │ │ ├── interface_ocsp.cpp │ │ │ │ ├── interface_ocsp.h │ │ │ │ ├── manifest.json │ │ │ │ ├── pse_pr_inc.h │ │ │ │ ├── psepr_service_bundle.cpp │ │ │ │ ├── sigma_helper.cpp │ │ │ │ ├── sigma_helper.h │ │ │ │ ├── u_certificate_provisioning.cpp │ │ │ │ ├── u_certificate_provisioning.h │ │ │ │ ├── u_long_term_pairing.cpp │ │ │ │ ├── u_long_term_pairing.h │ │ │ │ ├── uecall_bridge.cpp │ │ │ │ ├── uecall_bridge.h │ │ │ │ ├── upse.cpp │ │ │ │ └── upse.h │ │ │ └── quote_ex_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── manifest.json │ │ │ │ └── quote_ex_service_bundle.cpp │ │ │ ├── common │ │ │ ├── AEClass.h │ │ │ ├── AESMLogicWrapper.h │ │ │ ├── AESMQueue.h │ │ │ ├── AESMQueueManager.h │ │ │ ├── AESMWorkerThread.h │ │ │ ├── Buffer.h │ │ │ ├── CAESMServer.h │ │ │ ├── CSelector.h │ │ │ ├── IAESMQueue.h │ │ │ ├── IServerSocket.h │ │ │ ├── RequestData.h │ │ │ ├── Thread.h │ │ │ ├── UnixServerSocket.h │ │ │ ├── aesm_config.h │ │ │ ├── aesm_encode.h │ │ │ ├── aesm_exception.h │ │ │ ├── aesm_logic.h │ │ │ ├── aesm_long_lived_thread.h │ │ │ ├── aesm_proxy_type.h │ │ │ ├── aesm_quoting_type.h │ │ │ ├── aesm_rand.h │ │ │ ├── cppmicroservices_util.h │ │ │ ├── es_info.h │ │ │ ├── event_strings.h │ │ │ ├── helper.h │ │ │ ├── oal │ │ │ │ ├── aesm_persistent_storage.h │ │ │ │ ├── aesm_thread.h │ │ │ │ ├── error_report.h │ │ │ │ ├── internal_log.h │ │ │ │ ├── oal.h │ │ │ │ └── power.h │ │ │ ├── persistent_storage_info.h │ │ │ ├── platform_info_blob.h │ │ │ ├── prof_fun.h │ │ │ ├── ssl_compat_wrapper.h │ │ │ ├── ssl_crypto.h │ │ │ └── type_length_value.h │ │ │ ├── core │ │ │ ├── AESMLogicWrapper.cpp │ │ │ ├── AESMQueueManager.cpp │ │ │ ├── AESMWorkerThread.cpp │ │ │ ├── CAESMServer.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CSelector.cpp │ │ │ ├── Thread.cpp │ │ │ ├── UnixServerSocket.cpp │ │ │ ├── ipc │ │ │ │ ├── AECheckUpdateStatusRequest.cpp │ │ │ │ ├── AECheckUpdateStatusRequest.h │ │ │ │ ├── AECheckUpdateStatusResponse.cpp │ │ │ │ ├── AECheckUpdateStatusResponse.h │ │ │ │ ├── AECloseSessionRequest.cpp │ │ │ │ ├── AECloseSessionRequest.h │ │ │ │ ├── AECloseSessionResponse.cpp │ │ │ │ ├── AECloseSessionResponse.h │ │ │ │ ├── AECreateSessionRequest.cpp │ │ │ │ ├── AECreateSessionRequest.h │ │ │ │ ├── AECreateSessionResponse.cpp │ │ │ │ ├── AECreateSessionResponse.h │ │ │ │ ├── AEExchangeReportRequest.cpp │ │ │ │ ├── AEExchangeReportRequest.h │ │ │ │ ├── AEExchangeReportResponse.cpp │ │ │ │ ├── AEExchangeReportResponse.h │ │ │ │ ├── AEGetLaunchTokenRequest.cpp │ │ │ │ ├── AEGetLaunchTokenRequest.h │ │ │ │ ├── AEGetLaunchTokenResponse.cpp │ │ │ │ ├── AEGetLaunchTokenResponse.h │ │ │ │ ├── AEGetPsCapRequest.cpp │ │ │ │ ├── AEGetPsCapRequest.h │ │ │ │ ├── AEGetPsCapResponse.cpp │ │ │ │ ├── AEGetPsCapResponse.h │ │ │ │ ├── AEGetQuoteExRequest.cpp │ │ │ │ ├── AEGetQuoteExRequest.h │ │ │ │ ├── AEGetQuoteExResponse.cpp │ │ │ │ ├── AEGetQuoteExResponse.h │ │ │ │ ├── AEGetQuoteRequest.cpp │ │ │ │ ├── AEGetQuoteRequest.h │ │ │ │ ├── AEGetQuoteResponse.cpp │ │ │ │ ├── AEGetQuoteResponse.h │ │ │ │ ├── AEGetQuoteSizeExRequest.cpp │ │ │ │ ├── AEGetQuoteSizeExRequest.h │ │ │ │ ├── AEGetQuoteSizeExResponse.cpp │ │ │ │ ├── AEGetQuoteSizeExResponse.h │ │ │ │ ├── AEGetWhiteListRequest.cpp │ │ │ │ ├── AEGetWhiteListRequest.h │ │ │ │ ├── AEGetWhiteListResponse.cpp │ │ │ │ ├── AEGetWhiteListResponse.h │ │ │ │ ├── AEGetWhiteListSizeRequest.cpp │ │ │ │ ├── AEGetWhiteListSizeRequest.h │ │ │ │ ├── AEGetWhiteListSizeResponse.cpp │ │ │ │ ├── AEGetWhiteListSizeResponse.h │ │ │ │ ├── AEInitQuoteExRequest.cpp │ │ │ │ ├── AEInitQuoteExRequest.h │ │ │ │ ├── AEInitQuoteExResponse.cpp │ │ │ │ ├── AEInitQuoteExResponse.h │ │ │ │ ├── AEInitQuoteRequest.cpp │ │ │ │ ├── AEInitQuoteRequest.h │ │ │ │ ├── AEInitQuoteResponse.cpp │ │ │ │ ├── AEInitQuoteResponse.h │ │ │ │ ├── AEInvokeServiceRequest.cpp │ │ │ │ ├── AEInvokeServiceRequest.h │ │ │ │ ├── AEInvokeServiceResponse.cpp │ │ │ │ ├── AEInvokeServiceResponse.h │ │ │ │ ├── AEReportAttestationRequest.cpp │ │ │ │ ├── AEReportAttestationRequest.h │ │ │ │ ├── AEReportAttestationResponse.cpp │ │ │ │ ├── AEReportAttestationResponse.h │ │ │ │ ├── AESGXGetExtendedEpidGroupIdRequest.cpp │ │ │ │ ├── AESGXGetExtendedEpidGroupIdRequest.h │ │ │ │ ├── AESGXGetExtendedEpidGroupIdResponse.cpp │ │ │ │ ├── AESGXGetExtendedEpidGroupIdResponse.h │ │ │ │ ├── AESGXRegisterRequest.cpp │ │ │ │ ├── AESGXRegisterRequest.h │ │ │ │ ├── AESGXRegisterResponse.cpp │ │ │ │ ├── AESGXRegisterResponse.h │ │ │ │ ├── AESGXSwitchExtendedEpidGroupRequest.cpp │ │ │ │ ├── AESGXSwitchExtendedEpidGroupRequest.h │ │ │ │ ├── AESGXSwitchExtendedEpidGroupResponse.cpp │ │ │ │ ├── AESGXSwitchExtendedEpidGroupResponse.h │ │ │ │ ├── AESelectAttKeyIDRequest.cpp │ │ │ │ ├── AESelectAttKeyIDRequest.h │ │ │ │ ├── AESelectAttKeyIDResponse.cpp │ │ │ │ ├── AESelectAttKeyIDResponse.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── IAEMessage.h │ │ │ │ ├── IAERequest.h │ │ │ │ ├── IAEResponse.h │ │ │ │ ├── IAESMLogic.h │ │ │ │ ├── ICommunicationSocket.h │ │ │ │ ├── ISerializer.h │ │ │ │ ├── ISocketFactory.h │ │ │ │ ├── ITransporter.h │ │ │ │ ├── Makefile │ │ │ │ ├── NonBlockingUnixCommunicationSocket.cpp │ │ │ │ ├── NonBlockingUnixCommunicationSocket.h │ │ │ │ ├── NonBlockingUnixSocketFactory.cpp │ │ │ │ ├── NonBlockingUnixSocketFactory.h │ │ │ │ ├── ProtobufSerializer.cpp │ │ │ │ ├── ProtobufSerializer.h │ │ │ │ ├── SocketConfig.h │ │ │ │ ├── SocketTransporter.cpp │ │ │ │ ├── SocketTransporter.h │ │ │ │ ├── UnixCommunicationSocket.cpp │ │ │ │ ├── UnixCommunicationSocket.h │ │ │ │ ├── UnixSocketFactory.cpp │ │ │ │ ├── UnixSocketFactory.h │ │ │ │ ├── debug_log.h │ │ │ │ └── messages.proto │ │ │ └── main.cpp │ │ │ ├── interfaces │ │ │ ├── epid_quote_service.h │ │ │ ├── get_att_key_id.h │ │ │ ├── launch_service.h │ │ │ ├── network_service.h │ │ │ ├── pce_service.h │ │ │ ├── pseop_service.h │ │ │ ├── psepr_service.h │ │ │ ├── quote_ex_service.h │ │ │ ├── quote_provider_service.h │ │ │ ├── quote_proxy_service.h │ │ │ ├── quote_service.h │ │ │ ├── select_att_key_id.h │ │ │ └── service.h │ │ │ ├── oal │ │ │ ├── CMakeLists.txt │ │ │ └── linux │ │ │ │ ├── aesm_thread.cpp │ │ │ │ ├── aesm_util.cpp │ │ │ │ ├── error_report.cpp │ │ │ │ ├── event_strings.cpp │ │ │ │ ├── internal_log.cpp │ │ │ │ ├── oal_power.cpp │ │ │ │ └── persistent_storage_table.cpp │ │ │ ├── qcnl │ │ │ └── CMakeLists.txt │ │ │ ├── qpl │ │ │ └── CMakeLists.txt │ │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── aesm_config.cpp │ │ │ ├── aesm_long_lived_thread.cpp │ │ │ ├── aesm_rand.cpp │ │ │ ├── crypto_aes_gcm.cpp │ │ │ ├── crypto_cmac128.cpp │ │ │ ├── crypto_ecc.cpp │ │ │ ├── crypto_rsa.cpp │ │ │ ├── crypto_sha256_msg.cpp │ │ │ ├── helper.cpp │ │ │ ├── ssl_compat_wrapper.cpp │ │ │ └── type_length_value.cpp │ ├── buildenv.mk │ ├── common │ │ ├── pek_pub_key.cpp │ │ ├── pse_pr_common.cpp │ │ ├── pve_qe_common.cpp │ │ ├── se_ecdsa_verify_internal.cpp │ │ ├── se_sig_rl.cpp │ │ ├── t_pairing_blob.cpp │ │ └── version.cpp │ ├── cse_provision_tool │ │ ├── Makefile │ │ └── cse_provision_tool.cpp │ ├── data │ │ ├── constants │ │ │ └── linux │ │ │ │ ├── ae_debug_flag.hh │ │ │ │ ├── default_url_info.hh │ │ │ │ ├── epid_verify_pub.hh │ │ │ │ ├── isk_pub.hh │ │ │ │ ├── ivk_ca_root_der.hh │ │ │ │ ├── launch_enclave_mrsigner.hh │ │ │ │ ├── peksk_pub.hh │ │ │ │ ├── pibsk_pub.hh │ │ │ │ ├── pse_pr_padding.hh │ │ │ │ ├── pse_product_type.hh │ │ │ │ ├── qsdk_pub.hh │ │ │ │ ├── service_enclave_mrsigner.hh │ │ │ │ ├── wl_pub.hh │ │ │ │ └── xegdsk_pub.hh │ │ └── prebuilt │ │ │ ├── aesm_server_url.blob.00000000 │ │ │ ├── le_prod_css.bin │ │ │ └── white_list_cert_to_be_verify.bin │ ├── inc │ │ ├── aeerror.h │ │ ├── byte_order.h │ │ ├── internal │ │ │ ├── Epid_rl.h │ │ │ ├── aesm_error.h │ │ │ ├── epid_pve_type.h │ │ │ ├── le2be_macros.h │ │ │ ├── pairing_blob.h │ │ │ ├── pce_cert.h │ │ │ ├── pek_pub_key.h │ │ │ ├── pse_inc.h │ │ │ ├── pse_pr_common.h │ │ │ ├── pse_pr_sigma_1_1_defs.h │ │ │ ├── pse_pr_sigma_common_defs.h │ │ │ ├── pse_pr_sigma_defs.h │ │ │ ├── pse_pr_types.h │ │ │ ├── pse_types.h │ │ │ ├── pve_qe_common.h │ │ │ ├── ref_le.h │ │ │ ├── se_ecdsa_verify_internal.h │ │ │ ├── t_pairing_blob.h │ │ │ ├── tlv_common.h │ │ │ └── utility.h │ │ └── se_sig_rl.h │ ├── le │ │ ├── Makefile │ │ ├── config_linux.xml │ │ ├── launch_enclave.cpp │ │ ├── launch_enclave.edl │ │ └── launch_enclave.h │ ├── pce │ │ ├── Makefile │ │ ├── config.xml │ │ ├── pce.cpp │ │ ├── pce.edl │ │ └── pce_helper.cpp │ ├── pse │ │ ├── pse_op │ │ │ ├── Makefile │ │ │ ├── config.xml │ │ │ ├── createhash.pl │ │ │ ├── hashtable.txt │ │ │ ├── monotonic_counter.cpp │ │ │ ├── monotonic_counter.h │ │ │ ├── monotonic_counter_database_sqlite_access_hw_mc.cpp │ │ │ ├── monotonic_counter_database_sqlite_access_hw_mc.h │ │ │ ├── monotonic_counter_database_sqlite_bin_hash_tree_utility.cpp │ │ │ ├── monotonic_counter_database_sqlite_bin_hash_tree_utility.h │ │ │ ├── monotonic_counter_database_sqlite_cache.cpp │ │ │ ├── monotonic_counter_database_sqlite_cache.h │ │ │ ├── monotonic_counter_database_sqlite_check_error.cpp │ │ │ ├── monotonic_counter_database_sqlite_check_error.h │ │ │ ├── monotonic_counter_database_sqlite_rpdb.cpp │ │ │ ├── monotonic_counter_database_sqlite_rpdb.h │ │ │ ├── monotonic_counter_database_types.h │ │ │ ├── psda_service.cpp │ │ │ ├── psda_service.h │ │ │ ├── pse_op.cpp │ │ │ ├── pse_op.edl │ │ │ ├── session_mgr.cpp │ │ │ ├── session_mgr.h │ │ │ ├── trusted_time.cpp │ │ │ ├── trusted_time.h │ │ │ ├── utility.cpp │ │ │ └── vmc_db_generator │ │ │ │ ├── Makefile │ │ │ │ ├── main.cpp │ │ │ │ └── prebuild_pse_vmc.db │ │ ├── pse_pr │ │ │ ├── Keys.cpp │ │ │ ├── Keys.h │ │ │ ├── Makefile │ │ │ ├── X509Parser.cpp │ │ │ ├── X509_Parser │ │ │ │ ├── X509AlgoType.h │ │ │ │ ├── X509Cert.h │ │ │ │ ├── X509_Interface.h │ │ │ │ ├── X509_Parser.cpp │ │ │ │ ├── X509_Parser.h │ │ │ │ ├── pse_pr_support.h │ │ │ │ └── typedef.h │ │ │ ├── config.xml │ │ │ ├── include │ │ │ │ ├── X509Parser.h │ │ │ │ ├── csr_template_data.h │ │ │ │ ├── prepare_hash_sha256.h │ │ │ │ ├── prepare_hmac_sha256.h │ │ │ │ ├── protected_output_certificates.h │ │ │ │ ├── pse_pr_inc.h │ │ │ │ ├── safe_id.h │ │ │ │ ├── sigma_crypto_layer.h │ │ │ │ ├── sigma_crypto_layer_11.h │ │ │ │ ├── sign_csr.h │ │ │ │ ├── sign_template.h │ │ │ │ ├── signing_template_info.h │ │ │ │ ├── t_certificate_provisioning.h │ │ │ │ └── t_long_term_pairing.h │ │ │ ├── prepare_hash_sha1.cpp │ │ │ ├── prepare_hash_sha1.h │ │ │ ├── prepare_hash_sha256.cpp │ │ │ ├── prepare_hmac_sha256.cpp │ │ │ ├── pse_pr.cpp │ │ │ ├── pse_pr.edl │ │ │ ├── sigma_crypto_layer.cpp │ │ │ ├── sigma_crypto_layer_11.cpp │ │ │ ├── sign_csr.cpp │ │ │ ├── t_certificate_provisioning.cpp │ │ │ ├── t_long_term_pairing.cpp │ │ │ └── x509_parser_status.h │ │ └── pse_pr_2 │ │ │ ├── Makefile │ │ │ ├── config.xml │ │ │ ├── sigma_crypto_layer_20.cpp │ │ │ └── sigma_crypto_layer_20.h │ ├── pve │ │ ├── Makefile │ │ ├── cipher.h │ │ ├── config.xml │ │ ├── endpoint_selection.cpp │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── msg3_parm.h │ │ ├── protocol.h │ │ ├── provision_enclave.cpp │ │ ├── provision_enclave.edl │ │ ├── provision_msg.h │ │ ├── provision_msg1.cpp │ │ ├── provision_msg2.cpp │ │ ├── provision_msg3.cpp │ │ ├── provision_msg4.cpp │ │ ├── pve_hardcoded_tlv_data.h │ │ ├── pve_rng.cpp │ │ └── pve_verify_signature.cpp │ ├── qe │ │ ├── Makefile │ │ ├── config.xml │ │ ├── quoting_enclave.cpp │ │ └── quoting_enclave.edl │ └── ref_le │ │ ├── Makefile │ │ ├── config_linux.xml │ │ ├── ref_keys │ │ ├── enclave_private_key.pem │ │ ├── enclave_public_key.pem │ │ ├── le_private_key.pem │ │ ├── le_public_key.pem │ │ └── wl_cfg.csv │ │ ├── ref_le.cpp │ │ ├── ref_le.edl │ │ ├── ref_le.md │ │ └── ref_wl_gen │ │ ├── Makefile │ │ ├── parse_key_file.cpp │ │ ├── parse_key_file.h │ │ ├── ref_wl.cpp │ │ ├── ref_wl_gen.cpp │ │ └── ref_wl_gen.h ├── enclave_common │ ├── Makefile │ ├── sgx_enclave_common.cpp │ ├── sgx_enclave_common.h │ └── sgx_enclave_common.lds ├── uae_service │ ├── config.h │ ├── linux │ │ ├── Makefile │ │ └── uae_service.lds │ ├── sgx_uae_service.cpp │ ├── uae_service_assert.cpp │ ├── uae_service_version.cpp │ └── uae_wrapper │ │ ├── inc │ │ ├── AEServices.h │ │ ├── AEServicesImpl.h │ │ └── AEServicesProvider.h │ │ └── src │ │ ├── AEServicesImpl.cpp │ │ ├── AEServicesProvider.cpp │ │ ├── tae_ocall_api.cpp │ │ └── uae_api.cpp ├── urts │ ├── cpu_features.cpp │ ├── cpu_features.h │ ├── cpu_features_ext.cpp │ ├── create_param.h │ ├── enclave.cpp │ ├── enclave.h │ ├── enclave_creator_hw.h │ ├── enclave_creator_hw_com.cpp │ ├── enclave_mutex.cpp │ ├── file.h │ ├── launch_checker.cpp │ ├── launch_checker.h │ ├── linux │ │ ├── Makefile │ │ ├── debugger_support.cpp │ │ ├── debugger_support.h │ │ ├── edmm_utility.cpp │ │ ├── edmm_utility.h │ │ ├── enclave_creator_hw.cpp │ │ ├── enter_enclave.S │ │ ├── enter_enclave.h │ │ ├── get_thread_id.cpp │ │ ├── isgx_user.h │ │ ├── misc.cpp │ │ ├── read_xcr0.h │ │ ├── sig_handler.cpp │ │ ├── sig_handler.h │ │ ├── urts.cpp │ │ ├── urts.lds │ │ ├── urts_emodpr.cpp │ │ ├── urts_emodpr.h │ │ ├── urts_internal.cpp │ │ ├── urts_internal.lds │ │ ├── urts_trim.cpp │ │ └── urts_trim.h │ ├── loader.cpp │ ├── loader.h │ ├── node.cpp │ ├── node.h │ ├── parser │ │ ├── Makefile │ │ ├── binparser.h │ │ ├── clearvars.h │ │ ├── elf32parser.cpp │ │ ├── elf32parser.h │ │ ├── elf64parser.cpp │ │ ├── elf64parser.h │ │ ├── elfparser.cpp │ │ ├── elfparser.h │ │ ├── parserfactory.cpp │ │ ├── parserfactory.h │ │ ├── section.cpp │ │ ├── section.h │ │ └── update_global_data.hxx │ ├── prd_css_util.cpp │ ├── prd_css_util.h │ ├── routine.cpp │ ├── se_detect.cpp │ ├── se_detect.h │ ├── se_ocalls.cpp │ ├── section_info.h │ ├── tcs.cpp │ ├── tcs.h │ ├── urts_com.h │ ├── urts_version.cpp │ └── urts_xsave.cpp └── uswitchless │ ├── Makefile │ ├── sgx_ecall_switchless_untrusted.c │ ├── sl_fcall_mngr_untrusted.c │ ├── sl_siglines_untrusted.c │ ├── sl_uswitchless_untrusted.c │ └── sl_workers_untrusted.c ├── remake.sh └── sdk ├── Makefile ├── Makefile.opt_lib ├── Makefile.source ├── compiler-rt ├── LICENSE.TXT ├── Makefile ├── addtf3.c ├── ashldi3.c ├── ashlti3.c ├── ashrdi3.c ├── ashrti3.c ├── clear_cache.c ├── clzdi2.c ├── clzsi2.c ├── clzti2.c ├── cmpdi2.c ├── cmpti2.c ├── comparetf2.c ├── ctzdi2.c ├── ctzsi2.c ├── ctzti2.c ├── divdi3.c ├── divsi3.c ├── divtf3.c ├── divti3.c ├── extenddftf2.c ├── extendsftf2.c ├── ffsdi2.c ├── ffsti2.c ├── fixtfsi.c ├── floatsitf.c ├── floatunsitf.c ├── fp_extend.h ├── fp_lib.h ├── fp_trunc.h ├── int_endianness.h ├── int_lib.h ├── int_types.h ├── int_util.h ├── lshrdi3.c ├── lshrti3.c ├── moddi3.c ├── modsi3.c ├── modti3.c ├── muldi3.c ├── multf3.c ├── multi3.c ├── negdi2.c ├── negti2.c ├── paritydi2.c ├── paritysi2.c ├── parityti2.c ├── popcountdi2.c ├── popcountsi2.c ├── popcountti2.c ├── stack_chk.c ├── subtf3.c ├── trunctfdf2.c ├── trunctfsf2.c ├── ucmpdi2.c ├── ucmpti2.c ├── udivdi3.c ├── udivmoddi4.c ├── udivmodti4.c ├── udivsi3.c ├── udivti3.c ├── umoddi3.c ├── umodsi3.c └── umodti3.c ├── cpprt ├── Makefile ├── linux │ ├── abi_namespace.h │ ├── atomic.h │ ├── auxhelper.cc │ ├── cxxabi.h │ ├── dwarf_eh.h │ ├── dynamic_cast.cc │ ├── exception.cc │ ├── gcc_personality_v0.c │ ├── guard.cc │ ├── libelftc_dem_gnu3.c │ ├── libunwind │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── TODO │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── NOTES │ │ │ ├── _U_dyn_cancel.man │ │ │ ├── _U_dyn_cancel.tex │ │ │ ├── _U_dyn_register.man │ │ │ ├── _U_dyn_register.tex │ │ │ ├── common.tex.in │ │ │ ├── libunwind-dynamic.man │ │ │ ├── libunwind-dynamic.tex │ │ │ ├── libunwind-ia64.man │ │ │ ├── libunwind-ia64.tex │ │ │ ├── libunwind-ptrace.man │ │ │ ├── libunwind-ptrace.tex │ │ │ ├── libunwind-setjmp.man │ │ │ ├── libunwind-setjmp.tex │ │ │ ├── libunwind.man │ │ │ ├── libunwind.tex │ │ │ ├── libunwind.trans │ │ │ ├── unw_apply_reg_state.man │ │ │ ├── unw_apply_reg_state.tex │ │ │ ├── unw_backtrace.man │ │ │ ├── unw_backtrace.tex │ │ │ ├── unw_create_addr_space.man │ │ │ ├── unw_create_addr_space.tex │ │ │ ├── unw_destroy_addr_space.man │ │ │ ├── unw_destroy_addr_space.tex │ │ │ ├── unw_flush_cache.man │ │ │ ├── unw_flush_cache.tex │ │ │ ├── unw_get_accessors.man │ │ │ ├── unw_get_accessors.tex │ │ │ ├── unw_get_fpreg.man │ │ │ ├── unw_get_fpreg.tex │ │ │ ├── unw_get_proc_info.man │ │ │ ├── unw_get_proc_info.tex │ │ │ ├── unw_get_proc_info_by_ip.man │ │ │ ├── unw_get_proc_info_by_ip.tex │ │ │ ├── unw_get_proc_name.man │ │ │ ├── unw_get_proc_name.tex │ │ │ ├── unw_get_reg.man │ │ │ ├── unw_get_reg.tex │ │ │ ├── unw_getcontext.man │ │ │ ├── unw_getcontext.tex │ │ │ ├── unw_init_local.man │ │ │ ├── unw_init_local.tex │ │ │ ├── unw_init_local2.man │ │ │ ├── unw_init_remote.man │ │ │ ├── unw_init_remote.tex │ │ │ ├── unw_is_fpreg.man │ │ │ ├── unw_is_fpreg.tex │ │ │ ├── unw_is_signal_frame.man │ │ │ ├── unw_is_signal_frame.tex │ │ │ ├── unw_reg_states_iterate.man │ │ │ ├── unw_reg_states_iterate.tex │ │ │ ├── unw_regname.man │ │ │ ├── unw_regname.tex │ │ │ ├── unw_resume.man │ │ │ ├── unw_resume.tex │ │ │ ├── unw_set_cache_size.man │ │ │ ├── unw_set_cache_size.tex │ │ │ ├── unw_set_caching_policy.man │ │ │ ├── unw_set_caching_policy.tex │ │ │ ├── unw_set_fpreg.man │ │ │ ├── unw_set_fpreg.tex │ │ │ ├── unw_set_reg.man │ │ │ ├── unw_set_reg.tex │ │ │ ├── unw_step.man │ │ │ ├── unw_step.tex │ │ │ ├── unw_strerror.man │ │ │ └── unw_strerror.tex │ │ ├── include │ │ │ ├── compiler.h │ │ │ ├── dwarf-eh.h │ │ │ ├── dwarf.h │ │ │ ├── dwarf_i.h │ │ │ ├── libunwind-aarch64.h │ │ │ ├── libunwind-arm.h │ │ │ ├── libunwind-common.h.in │ │ │ ├── libunwind-coredump.h │ │ │ ├── libunwind-dynamic.h │ │ │ ├── libunwind-hppa.h │ │ │ ├── libunwind-ia64.h │ │ │ ├── libunwind-mips.h │ │ │ ├── libunwind-ppc32.h │ │ │ ├── libunwind-ppc64.h │ │ │ ├── libunwind-ptrace.h │ │ │ ├── libunwind-sh.h │ │ │ ├── libunwind-tilegx.h │ │ │ ├── libunwind-x86.h │ │ │ ├── libunwind-x86_64.h │ │ │ ├── libunwind.h.in │ │ │ ├── libunwind_i.h │ │ │ ├── mempool.h │ │ │ ├── pthread.h │ │ │ ├── remote.h │ │ │ ├── tdep-aarch64 │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-arm │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── ex_tables.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-hppa │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-ia64 │ │ │ │ ├── jmpbuf.h │ │ │ │ ├── libunwind_i.h │ │ │ │ ├── rse.h │ │ │ │ └── script.h │ │ │ ├── tdep-mips │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-ppc32 │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-ppc64 │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-sh │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-tilegx │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-x86 │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep-x86_64 │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h │ │ │ ├── tdep │ │ │ │ ├── dwarf-config.h │ │ │ │ ├── jmpbuf.h │ │ │ │ └── libunwind_i.h.in │ │ │ ├── unwind.h │ │ │ └── x86 │ │ │ │ └── jmpbuf.h │ │ ├── scripts │ │ │ ├── kernel-diff.sh │ │ │ ├── kernel-files.txt │ │ │ └── make-L-files │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── aarch64 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstash_frame.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Gtrace.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstash_frame.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── Ltrace.c │ │ │ │ ├── gen-offsets.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ ├── arm │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gex_tables.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gos-freebsd.c │ │ │ │ ├── Gos-linux.c │ │ │ │ ├── Gos-other.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstash_frame.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Gtrace.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lex_tables.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Los-freebsd.c │ │ │ │ ├── Los-linux.c │ │ │ │ ├── Los-other.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstash_frame.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── Ltrace.c │ │ │ │ ├── gen-offsets.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ ├── coredump │ │ │ │ ├── README │ │ │ │ ├── _UCD_access_mem.c │ │ │ │ ├── _UCD_access_reg_freebsd.c │ │ │ │ ├── _UCD_access_reg_linux.c │ │ │ │ ├── _UCD_accessors.c │ │ │ │ ├── _UCD_create.c │ │ │ │ ├── _UCD_destroy.c │ │ │ │ ├── _UCD_elf_map_image.c │ │ │ │ ├── _UCD_find_proc_info.c │ │ │ │ ├── _UCD_get_proc_name.c │ │ │ │ ├── _UCD_internal.h │ │ │ │ ├── _UCD_lib.h │ │ │ │ ├── _UPT_access_fpreg.c │ │ │ │ ├── _UPT_elf.c │ │ │ │ ├── _UPT_get_dyn_info_list_addr.c │ │ │ │ ├── _UPT_put_unwind_info.c │ │ │ │ ├── _UPT_resume.c │ │ │ │ └── libunwind-coredump.pc.in │ │ │ ├── dwarf │ │ │ │ ├── Gexpr.c │ │ │ │ ├── Gfde.c │ │ │ │ ├── Gfind_proc_info-lsb.c │ │ │ │ ├── Gfind_unwind_table.c │ │ │ │ ├── Gparser.c │ │ │ │ ├── Gpe.c │ │ │ │ ├── Lexpr.c │ │ │ │ ├── Lfde.c │ │ │ │ ├── Lfind_proc_info-lsb.c │ │ │ │ ├── Lfind_unwind_table.c │ │ │ │ ├── Lparser.c │ │ │ │ ├── Lpe.c │ │ │ │ └── global.c │ │ │ ├── elf32.c │ │ │ ├── elf32.h │ │ │ ├── elf64.c │ │ │ ├── elf64.h │ │ │ ├── elfxx.c │ │ │ ├── elfxx.h │ │ │ ├── hppa │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── get_accessors.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── siglongjmp.S │ │ │ │ ├── tables.c │ │ │ │ └── unwind_i.h │ │ │ ├── ia64 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gfind_unwind_table.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Ginstall_cursor.S │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Gparser.c │ │ │ │ ├── Grbs.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gscript.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Gtables.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lfind_unwind_table.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Linstall_cursor.S │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lparser.c │ │ │ │ ├── Lrbs.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lscript.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── Ltables.c │ │ │ │ ├── NOTES │ │ │ │ ├── dyn_info_list.S │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── longjmp.S │ │ │ │ ├── mk_Gcursor_i.c │ │ │ │ ├── mk_Lcursor_i.c │ │ │ │ ├── mk_cursor_i │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── regs.h │ │ │ │ ├── setjmp.S │ │ │ │ ├── siglongjmp.S │ │ │ │ ├── sigsetjmp.S │ │ │ │ ├── ucontext_i.h │ │ │ │ ├── unwind_decoder.h │ │ │ │ └── unwind_i.h │ │ │ ├── libunwind-generic.pc.in │ │ │ ├── mi │ │ │ │ ├── Gdestroy_addr_space.c │ │ │ │ ├── Gdyn-extract.c │ │ │ │ ├── Gdyn-remote.c │ │ │ │ ├── Gfind_dynamic_proc_info.c │ │ │ │ ├── Gget_accessors.c │ │ │ │ ├── Gget_fpreg.c │ │ │ │ ├── Gget_proc_info_by_ip.c │ │ │ │ ├── Gget_proc_name.c │ │ │ │ ├── Gget_reg.c │ │ │ │ ├── Gput_dynamic_unwind_info.c │ │ │ │ ├── Gset_cache_size.c │ │ │ │ ├── Gset_caching_policy.c │ │ │ │ ├── Gset_fpreg.c │ │ │ │ ├── Gset_reg.c │ │ │ │ ├── Ldestroy_addr_space.c │ │ │ │ ├── Ldyn-extract.c │ │ │ │ ├── Ldyn-remote.c │ │ │ │ ├── Lfind_dynamic_proc_info.c │ │ │ │ ├── Lget_accessors.c │ │ │ │ ├── Lget_fpreg.c │ │ │ │ ├── Lget_proc_info_by_ip.c │ │ │ │ ├── Lget_proc_name.c │ │ │ │ ├── Lget_reg.c │ │ │ │ ├── Lput_dynamic_unwind_info.c │ │ │ │ ├── Lset_cache_size.c │ │ │ │ ├── Lset_caching_policy.c │ │ │ │ ├── Lset_fpreg.c │ │ │ │ ├── Lset_reg.c │ │ │ │ ├── _ReadSLEB.c │ │ │ │ ├── _ReadULEB.c │ │ │ │ ├── backtrace.c │ │ │ │ ├── dyn-cancel.c │ │ │ │ ├── dyn-info-list.c │ │ │ │ ├── dyn-register.c │ │ │ │ ├── flush_cache.c │ │ │ │ ├── init.c │ │ │ │ ├── mempool.c │ │ │ │ └── strerror.c │ │ │ ├── mips │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── elfxx.c │ │ │ │ ├── gen-offsets.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ ├── os-freebsd.c │ │ │ ├── os-hpux.c │ │ │ ├── os-linux.c │ │ │ ├── os-linux.h │ │ │ ├── os-qnx.c │ │ │ ├── ppc │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── longjmp.S │ │ │ │ └── siglongjmp.S │ │ │ ├── ppc32 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── Make-arch.in │ │ │ │ ├── get_func_addr.c │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── regname.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── ucontext_i.h │ │ │ │ └── unwind_i.h │ │ │ ├── ppc64 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── get_func_addr.c │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── regname.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── ucontext_i.h │ │ │ │ └── unwind_i.h │ │ │ ├── ptrace │ │ │ │ ├── _UPT_access_fpreg.c │ │ │ │ ├── _UPT_access_mem.c │ │ │ │ ├── _UPT_access_reg.c │ │ │ │ ├── _UPT_accessors.c │ │ │ │ ├── _UPT_create.c │ │ │ │ ├── _UPT_destroy.c │ │ │ │ ├── _UPT_elf.c │ │ │ │ ├── _UPT_find_proc_info.c │ │ │ │ ├── _UPT_get_dyn_info_list_addr.c │ │ │ │ ├── _UPT_get_proc_name.c │ │ │ │ ├── _UPT_internal.h │ │ │ │ ├── _UPT_put_unwind_info.c │ │ │ │ ├── _UPT_reg_offset.c │ │ │ │ ├── _UPT_resume.c │ │ │ │ └── libunwind-ptrace.pc.in │ │ │ ├── se-iterate-phdr.c │ │ │ ├── se-libc-stubs.c │ │ │ ├── setjmp │ │ │ │ ├── libunwind-setjmp.pc.in │ │ │ │ ├── longjmp.c │ │ │ │ ├── setjmp.c │ │ │ │ ├── setjmp_i.h │ │ │ │ ├── siglongjmp.c │ │ │ │ └── sigsetjmp.c │ │ │ ├── sh │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── gen-offsets.c │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ ├── tilegx │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── elfxx.c │ │ │ │ ├── gen-offsets.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ ├── unwind │ │ │ │ ├── Backtrace.c │ │ │ │ ├── DeleteException.c │ │ │ │ ├── FindEnclosingFunction.c │ │ │ │ ├── ForcedUnwind.c │ │ │ │ ├── GetBSP.c │ │ │ │ ├── GetCFA.c │ │ │ │ ├── GetDataRelBase.c │ │ │ │ ├── GetGR.c │ │ │ │ ├── GetIP.c │ │ │ │ ├── GetIPInfo.c │ │ │ │ ├── GetLanguageSpecificData.c │ │ │ │ ├── GetRegionStart.c │ │ │ │ ├── GetTextRelBase.c │ │ │ │ ├── RaiseException.c │ │ │ │ ├── Resume.c │ │ │ │ ├── Resume_or_Rethrow.c │ │ │ │ ├── SetGR.c │ │ │ │ ├── SetIP.c │ │ │ │ ├── libunwind.pc.in │ │ │ │ └── unwind-internal.h │ │ │ ├── x86 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gos-freebsd.c │ │ │ │ ├── Gos-linux.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Los-freebsd.c │ │ │ │ ├── Los-linux.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── getcontext-freebsd.S │ │ │ │ ├── getcontext-linux.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── longjmp.S │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── siglongjmp.S │ │ │ │ └── unwind_i.h │ │ │ └── x86_64 │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ ├── Gget_proc_info.c │ │ │ │ ├── Gget_save_loc.c │ │ │ │ ├── Gglobal.c │ │ │ │ ├── Ginit.c │ │ │ │ ├── Ginit_local.c │ │ │ │ ├── Ginit_remote.c │ │ │ │ ├── Gos-freebsd.c │ │ │ │ ├── Gos-linux.c │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ ├── Gregs.c │ │ │ │ ├── Gresume.c │ │ │ │ ├── Gstash_frame.c │ │ │ │ ├── Gstep.c │ │ │ │ ├── Gtrace.c │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ ├── Lget_proc_info.c │ │ │ │ ├── Lget_save_loc.c │ │ │ │ ├── Lglobal.c │ │ │ │ ├── Linit.c │ │ │ │ ├── Linit_local.c │ │ │ │ ├── Linit_remote.c │ │ │ │ ├── Los-freebsd.c │ │ │ │ ├── Los-linux.c │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ ├── Lregs.c │ │ │ │ ├── Lresume.c │ │ │ │ ├── Lstash_frame.c │ │ │ │ ├── Lstep.c │ │ │ │ ├── Ltrace.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init.h │ │ │ │ ├── is_fpreg.c │ │ │ │ ├── longjmp.S │ │ │ │ ├── offsets.h │ │ │ │ ├── regname.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── siglongjmp.S │ │ │ │ ├── ucontext_i.h │ │ │ │ └── unwind_i.h │ │ └── tests │ │ │ ├── Gia64-test-nat.c │ │ │ ├── Gia64-test-rbs.c │ │ │ ├── Gia64-test-readonly.c │ │ │ ├── Gia64-test-stack.c │ │ │ ├── Gperf-simple.c │ │ │ ├── Gperf-trace.c │ │ │ ├── Gtest-bt.c │ │ │ ├── Gtest-concurrent.c │ │ │ ├── Gtest-dyn1.c │ │ │ ├── Gtest-exc.c │ │ │ ├── Gtest-init.cxx │ │ │ ├── Gtest-nomalloc.c │ │ │ ├── Gtest-resume-sig-rt.c │ │ │ ├── Gtest-resume-sig.c │ │ │ ├── Gtest-trace.c │ │ │ ├── Lia64-test-nat.c │ │ │ ├── Lia64-test-rbs.c │ │ │ ├── Lia64-test-readonly.c │ │ │ ├── Lia64-test-stack.c │ │ │ ├── Lperf-simple.c │ │ │ ├── Lperf-trace.c │ │ │ ├── Lrs-race.c │ │ │ ├── Ltest-bt.c │ │ │ ├── Ltest-concurrent.c │ │ │ ├── Ltest-cxx-exceptions.cxx │ │ │ ├── Ltest-dyn1.c │ │ │ ├── Ltest-exc.c │ │ │ ├── Ltest-init-local-signal-lib.c │ │ │ ├── Ltest-init-local-signal.c │ │ │ ├── Ltest-init.cxx │ │ │ ├── Ltest-mem-validate.c │ │ │ ├── Ltest-nocalloc.c │ │ │ ├── Ltest-nomalloc.c │ │ │ ├── Ltest-resume-sig-rt.c │ │ │ ├── Ltest-resume-sig.c │ │ │ ├── Ltest-trace.c │ │ │ ├── Ltest-varargs.c │ │ │ ├── Makefile.am │ │ │ ├── check-namespace.sh.in │ │ │ ├── crasher.c │ │ │ ├── flush-cache.S │ │ │ ├── flush-cache.h │ │ │ ├── forker.c │ │ │ ├── ia64-dyn-asm.S │ │ │ ├── ia64-test-dyn1.c │ │ │ ├── ia64-test-nat-asm.S │ │ │ ├── ia64-test-rbs-asm.S │ │ │ ├── ia64-test-rbs.h │ │ │ ├── ia64-test-readonly-asm.S │ │ │ ├── ia64-test-setjmp.c │ │ │ ├── ia64-test-sig.c │ │ │ ├── ia64-test-stack-asm.S │ │ │ ├── ia64-test-stack.h │ │ │ ├── ident.c │ │ │ ├── mapper.c │ │ │ ├── perf-startup │ │ │ ├── ppc64-test-altivec-utils.c │ │ │ ├── ppc64-test-altivec.c │ │ │ ├── run-check-namespace │ │ │ ├── run-coredump-unwind │ │ │ ├── run-coredump-unwind-mdi │ │ │ ├── run-ia64-test-dyn1 │ │ │ ├── run-ptrace-mapper │ │ │ ├── run-ptrace-misc │ │ │ ├── test-async-sig.c │ │ │ ├── test-coredump-unwind.c │ │ │ ├── test-flush-cache.c │ │ │ ├── test-init-remote.c │ │ │ ├── test-mem.c │ │ │ ├── test-proc-info.c │ │ │ ├── test-ptrace-misc.c │ │ │ ├── test-ptrace.c │ │ │ ├── test-reg-state.c │ │ │ ├── test-setjmp.c │ │ │ ├── test-static-link-gen.c │ │ │ ├── test-static-link-loc.c │ │ │ └── test-strerror.c │ ├── pthread_compat.h │ ├── stdexcept.cc │ ├── terminate.cc │ ├── typeinfo.cc │ ├── typeinfo.h │ ├── unwind-arm.h │ ├── unwind-itanium.h │ └── unwind.h ├── memory_manage │ ├── delete1.cpp │ ├── delete2.cpp │ ├── delete3.cpp │ ├── delete4.cpp │ ├── delete5.cpp │ ├── delete6.cpp │ ├── delete7.cpp │ ├── delete8.cpp │ ├── new1.cpp │ ├── new2.cpp │ ├── new3.cpp │ ├── new4.cpp │ ├── new5.cpp │ ├── new6.cpp │ └── new_handler.cpp └── tcxx_version.cpp ├── debugger_interface └── linux │ ├── Makefile │ ├── gdb-sgx-plugin │ ├── gdb_sgx_cmd │ ├── gdb_sgx_plugin.py │ ├── load_symbol_cmd.py │ ├── readelf.py │ ├── sgx-gdb │ └── sgx_emmt.py │ ├── ptrace_version.c │ └── se_ptrace.c ├── ec_dh_lib ├── Makefile ├── ec_dh.cpp └── sgx_dh_internal.h ├── edger8r └── linux │ ├── Ast.ml │ ├── CodeGen.ml │ ├── Edger8r.ml │ ├── Lexer.mll │ ├── Makefile │ ├── Parser.mly │ ├── Plugin.ml │ ├── Preprocessor.ml │ ├── SimpleStack.ml │ └── Util.ml ├── encrypt_enclave ├── Makefile ├── encryptip.cpp └── encryptip.h ├── gperftools ├── Makefile ├── README └── gperftools-2.7 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.old │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README_windows.txt │ ├── TODO │ ├── autogen.sh │ ├── benchmark │ ├── binary_trees.cc │ ├── getcontext_light.cc │ ├── malloc_bench.cc │ ├── run_benchmark.c │ ├── run_benchmark.h │ └── unwind_bench.cc │ ├── configure.ac │ ├── docs │ ├── cpuprofile-fileformat.html │ ├── cpuprofile.html │ ├── designstyle.css │ ├── heap-example1.png │ ├── heap_checker.html │ ├── heapprofile.html │ ├── index.html │ ├── overview.dot │ ├── overview.gif │ ├── pageheap.dot │ ├── pageheap.gif │ ├── pprof-test-big.gif │ ├── pprof-test.gif │ ├── pprof-vsnprintf-big.gif │ ├── pprof-vsnprintf.gif │ ├── pprof.1 │ ├── pprof.see_also │ ├── pprof_remote_servers.html │ ├── spanmap.dot │ ├── spanmap.gif │ ├── t-test1.times.txt │ ├── tcmalloc-opspercpusec.vs.threads.1024.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.128.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.131072.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.16384.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.2048.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.256.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.32768.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.4096.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.512.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.64.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.65536.bytes.png │ ├── tcmalloc-opspercpusec.vs.threads.8192.bytes.png │ ├── tcmalloc-opspersec.vs.size.1.threads.png │ ├── tcmalloc-opspersec.vs.size.12.threads.png │ ├── tcmalloc-opspersec.vs.size.16.threads.png │ ├── tcmalloc-opspersec.vs.size.2.threads.png │ ├── tcmalloc-opspersec.vs.size.20.threads.png │ ├── tcmalloc-opspersec.vs.size.3.threads.png │ ├── tcmalloc-opspersec.vs.size.4.threads.png │ ├── tcmalloc-opspersec.vs.size.5.threads.png │ ├── tcmalloc-opspersec.vs.size.8.threads.png │ ├── tcmalloc.html │ ├── threadheap.dot │ └── threadheap.gif │ ├── gperftools.sln │ ├── m4 │ ├── ac_have_attribute.m4 │ ├── acx_nanosleep.m4 │ ├── acx_pthread.m4 │ ├── ax_generate_changelog.m4 │ ├── compiler_characteristics.m4 │ ├── install_prefix.m4 │ ├── namespaces.m4 │ ├── pc_from_ucontext.m4 │ ├── program_invocation_name.m4 │ └── stl_namespace.m4 │ ├── packages │ ├── deb.sh │ ├── deb │ │ ├── README │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── libgperftools-dev.dirs │ │ ├── libgperftools-dev.install │ │ ├── libgperftools0.dirs │ │ ├── libgperftools0.install │ │ ├── libgperftools0.manpages │ │ └── rules │ ├── rpm.sh │ └── rpm │ │ └── rpm.spec │ ├── src │ ├── addressmap-inl.h │ ├── base │ │ ├── arm_instruction_set_select.h │ │ ├── atomicops-internals-arm-generic.h │ │ ├── atomicops-internals-arm-v6plus.h │ │ ├── atomicops-internals-gcc.h │ │ ├── atomicops-internals-linuxppc.h │ │ ├── atomicops-internals-macosx.h │ │ ├── atomicops-internals-mips.h │ │ ├── atomicops-internals-windows.h │ │ ├── atomicops-internals-x86.cc │ │ ├── atomicops-internals-x86.h │ │ ├── atomicops.h │ │ ├── basictypes.h │ │ ├── commandlineflags.h │ │ ├── dynamic_annotations.c │ │ ├── dynamic_annotations.h │ │ ├── elf_mem_image.cc │ │ ├── elf_mem_image.h │ │ ├── elfcore.h │ │ ├── googleinit.h │ │ ├── linux_syscall_support.h │ │ ├── linuxthreads.cc │ │ ├── linuxthreads.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── low_level_alloc.cc │ │ ├── low_level_alloc.h │ │ ├── sgx_utils.cc │ │ ├── simple_mutex.h │ │ ├── spinlock.cc │ │ ├── spinlock.h │ │ ├── spinlock_internal.cc │ │ ├── spinlock_internal.h │ │ ├── spinlock_linux-inl.h │ │ ├── spinlock_posix-inl.h │ │ ├── spinlock_win32-inl.h │ │ ├── stl_allocator.h │ │ ├── sysinfo.cc │ │ ├── sysinfo.h │ │ ├── thread_annotations.h │ │ ├── thread_lister.c │ │ ├── thread_lister.h │ │ ├── vdso_support.cc │ │ └── vdso_support.h │ ├── central_freelist.cc │ ├── central_freelist.h │ ├── common.cc │ ├── common.h │ ├── config_for_unittests.h │ ├── debugallocation.cc │ ├── emergency_malloc.cc │ ├── emergency_malloc.h │ ├── emergency_malloc_for_stacktrace.cc │ ├── fake_stacktrace_scope.cc │ ├── getenv_safe.h │ ├── getpc.h │ ├── google │ │ ├── heap-checker.h │ │ ├── heap-profiler.h │ │ ├── malloc_extension.h │ │ ├── malloc_extension_c.h │ │ ├── malloc_hook.h │ │ ├── malloc_hook_c.h │ │ ├── profiler.h │ │ ├── stacktrace.h │ │ └── tcmalloc.h │ ├── gperftools │ │ ├── heap-checker.h │ │ ├── heap-profiler.h │ │ ├── malloc_extension.h │ │ ├── malloc_extension_c.h │ │ ├── malloc_hook.h │ │ ├── malloc_hook_c.h │ │ ├── nallocx.h │ │ ├── profiler.h │ │ ├── stacktrace.h │ │ └── tcmalloc.h.in │ ├── heap-checker-bcad.cc │ ├── heap-checker.cc │ ├── heap-profile-stats.h │ ├── heap-profile-table.cc │ ├── heap-profile-table.h │ ├── heap-profiler.cc │ ├── internal_logging.cc │ ├── internal_logging.h │ ├── libc_override.h │ ├── libc_override_gcc_and_weak.h │ ├── libc_override_glibc.h │ ├── libc_override_osx.h │ ├── libc_override_redefine.h │ ├── linked_list.h │ ├── malloc_extension.cc │ ├── malloc_hook-inl.h │ ├── malloc_hook.cc │ ├── malloc_hook_mmap_freebsd.h │ ├── malloc_hook_mmap_linux.h │ ├── maybe_emergency_malloc.h │ ├── maybe_threads.cc │ ├── maybe_threads.h │ ├── memfs_malloc.cc │ ├── memory_region_map.cc │ ├── memory_region_map.h │ ├── packed-cache-inl.h │ ├── page_heap.cc │ ├── page_heap.h │ ├── page_heap_allocator.h │ ├── pagemap.h │ ├── pprof │ ├── profile-handler.cc │ ├── profile-handler.h │ ├── profiledata.cc │ ├── profiledata.h │ ├── profiler.cc │ ├── raw_printer.cc │ ├── raw_printer.h │ ├── sampler.cc │ ├── sampler.h │ ├── span.cc │ ├── span.h │ ├── stack_trace_table.cc │ ├── stack_trace_table.h │ ├── stacktrace.cc │ ├── stacktrace_arm-inl.h │ ├── stacktrace_generic-inl.h │ ├── stacktrace_impl_setup-inl.h │ ├── stacktrace_instrument-inl.h │ ├── stacktrace_libgcc-inl.h │ ├── stacktrace_libunwind-inl.h │ ├── stacktrace_powerpc-darwin-inl.h │ ├── stacktrace_powerpc-inl.h │ ├── stacktrace_powerpc-linux-inl.h │ ├── stacktrace_win32-inl.h │ ├── stacktrace_x86-inl.h │ ├── static_vars.cc │ ├── static_vars.h │ ├── symbolize.cc │ ├── symbolize.h │ ├── system-alloc.cc │ ├── system-alloc.h │ ├── tcmalloc.cc │ ├── tcmalloc.h │ ├── tcmalloc_guard.h │ ├── tests │ │ ├── addressmap_unittest.cc │ │ ├── atomicops_unittest.cc │ │ ├── current_allocated_bytes_test.cc │ │ ├── debugallocation_test.cc │ │ ├── debugallocation_test.sh │ │ ├── frag_unittest.cc │ │ ├── getpc_test.cc │ │ ├── heap-checker-death_unittest.sh │ │ ├── heap-checker_unittest.cc │ │ ├── heap-checker_unittest.sh │ │ ├── heap-profiler_unittest.cc │ │ ├── heap-profiler_unittest.sh │ │ ├── large_heap_fragmentation_unittest.cc │ │ ├── low_level_alloc_unittest.cc │ │ ├── malloc_extension_c_test.c │ │ ├── malloc_extension_test.cc │ │ ├── malloc_hook_test.cc │ │ ├── markidle_unittest.cc │ │ ├── maybe_threads_unittest.sh │ │ ├── memalign_unittest.cc │ │ ├── packed-cache_test.cc │ │ ├── page_heap_test.cc │ │ ├── pagemap_unittest.cc │ │ ├── profile-handler_unittest.cc │ │ ├── profiledata_unittest.cc │ │ ├── profiler_unittest.cc │ │ ├── profiler_unittest.sh │ │ ├── raw_printer_test.cc │ │ ├── realloc_unittest.cc │ │ ├── sampler_test.cc │ │ ├── sampling_test.cc │ │ ├── sampling_test.sh │ │ ├── simple_compat_test.cc │ │ ├── stack_trace_table_test.cc │ │ ├── stacktrace_unittest.cc │ │ ├── system-alloc_unittest.cc │ │ ├── tcmalloc_large_unittest.cc │ │ ├── tcmalloc_unittest.cc │ │ ├── tcmalloc_unittest.sh │ │ ├── testutil.cc │ │ ├── testutil.h │ │ └── thread_dealloc_unittest.cc │ ├── third_party │ │ └── valgrind.h │ ├── thread_cache.cc │ ├── thread_cache.h │ └── windows │ │ ├── TODO │ │ ├── addr2line-pdb.c │ │ ├── auto_testing_hook.h │ │ ├── config.h │ │ ├── get_mangled_names.cc │ │ ├── google │ │ └── tcmalloc.h │ │ ├── gperftools │ │ ├── tcmalloc.h │ │ └── tcmalloc.h.in │ │ ├── ia32_modrm_map.cc │ │ ├── ia32_opcode_map.cc │ │ ├── mingw.h │ │ ├── mini_disassembler.cc │ │ ├── mini_disassembler.h │ │ ├── mini_disassembler_types.h │ │ ├── nm-pdb.c │ │ ├── override_functions.cc │ │ ├── patch_functions.cc │ │ ├── port.cc │ │ ├── port.h │ │ ├── preamble_patcher.cc │ │ ├── preamble_patcher.h │ │ ├── preamble_patcher_test.cc │ │ ├── preamble_patcher_with_stub.cc │ │ ├── shortproc.asm │ │ └── system-alloc.cc │ └── vsprojects │ ├── addr2line-pdb │ └── addr2line-pdb.vcproj │ ├── addressmap_unittest │ └── addressmap_unittest.vcproj │ ├── current_allocated_bytes_test │ └── current_allocated_bytes_test.vcproj │ ├── frag_unittest │ └── frag_unittest.vcproj │ ├── libtcmalloc_minimal │ └── libtcmalloc_minimal.vcproj │ ├── low_level_alloc_unittest │ └── low_level_alloc_unittest.vcproj │ ├── malloc_extension_test │ └── malloc_extension_test.vcproj │ ├── malloc_hook_test │ └── malloc_hook_test.vcproj │ ├── markidle_unittest │ └── markidle_unittest.vcproj │ ├── nm-pdb │ └── nm-pdb.vcproj │ ├── packed-cache_test │ └── packed-cache_test.vcproj │ ├── page_heap_test │ └── page_heap_test.vcproj │ ├── pagemap_unittest │ └── pagemap_unittest.vcproj │ ├── preamble_patcher_test │ └── preamble_patcher_test.vcproj │ ├── realloc_unittest │ └── realloc_unittest.vcproj │ ├── sampler_test │ └── sampler_test.vcproj │ ├── stack_trace_table_test │ └── stack_trace_table_test.vcproj │ ├── system-alloc_unittest │ └── system-alloc_unittest.vcproj │ ├── tcmalloc_minimal_large │ └── tcmalloc_minimal_large_unittest.vcproj │ ├── tcmalloc_minimal_unittest │ └── tcmalloc_minimal_unittest.vcproj │ ├── thread_dealloc_unittest │ └── thread_dealloc_unittest.vcproj │ └── tmu-static │ └── tmu-static.vcproj ├── libcapable └── linux │ ├── Makefile │ ├── sgx_capable.cpp │ └── sgx_capable_version.cpp ├── mage ├── Makefile └── sgx_mage.cpp ├── protected_code_loader ├── Makefile ├── crypto │ ├── pcl_cmac.c │ ├── pcl_crypto.cpp │ ├── pcl_crypto_internal.h │ ├── pcl_gcm128.c │ ├── pcl_ghash-x86_64.s │ ├── pcl_md32_common.h │ ├── pcl_modes_lcl.h │ ├── pcl_sha256.c │ └── pcl_vpaes-x86_64.s ├── pcl_entry.cpp ├── pcl_internal.h ├── pcl_mem.cpp └── unseal │ ├── pcl_sgx_get_key.cpp │ ├── pcl_tSeal.cpp │ ├── pcl_tSeal_internal.cpp │ ├── pcl_tSeal_util.cpp │ ├── pcl_unseal_internal.h │ └── sim │ ├── pcl_deriv.cpp │ └── pcl_t_instructions.cpp ├── protected_fs ├── sgx_tprotected_fs │ ├── Makefile │ ├── file_crypto.cpp │ ├── file_flush.cpp │ ├── file_init.cpp │ ├── file_other.cpp │ ├── file_read_write.cpp │ ├── file_version.cpp │ ├── lru_cache.cpp │ ├── lru_cache.h │ ├── protected_fs_file.h │ ├── protected_fs_nodes.h │ ├── sgx_tprotected_fs.cpp │ └── tprotected_fs.h └── sgx_uprotected_fs │ ├── Makefile │ ├── sgx_uprotected_fs.cpp │ └── uprotected_fs.h ├── sample_libcrypto ├── Makefile ├── sample_libcrypto.cpp ├── sample_libcrypto.h └── sample_libcrypto.lds ├── selib ├── linux │ └── Makefile ├── sgx_create_report.cpp ├── sgx_get_key.cpp ├── sgx_verify_report.cpp └── tservice_version.cpp ├── sign_tool └── SignTool │ ├── Makefile │ ├── elf_helper.h │ ├── enclave_creator_sign.cpp │ ├── enclave_creator_sign.h │ ├── manage_metadata.cpp │ ├── manage_metadata.h │ ├── parse_key_file.cpp │ ├── parse_key_file.h │ ├── sign_tool.cpp │ ├── util_st.cpp │ └── util_st.h ├── simulation ├── Makefile ├── SEConfigureCPUSVN │ └── linux │ │ ├── Makefile │ │ ├── config_cpusvn.cpp │ │ └── cpusvn_helper.h ├── assembly │ ├── Makefile │ ├── linux │ │ ├── Makefile │ │ ├── gnu_tls.h │ │ ├── lowlib.S │ │ ├── sgxsim.S │ │ └── sw_emu.h │ ├── lowlib.h │ └── sgxsim.h ├── driver_api │ ├── Makefile │ └── driver_api.cpp ├── tae_service_sim │ ├── Makefile │ └── tae_service_sim.cpp ├── tinst │ ├── Makefile │ ├── deriv.cpp │ ├── deriv.h │ ├── rts_sim.h │ ├── t_instructions.cpp │ └── t_instructions.h ├── trtssim │ ├── Makefile │ └── linux │ │ └── Makefile ├── uae_service_sim │ ├── licensing_sim.cpp │ ├── linux │ │ ├── Makefile │ │ ├── platform_service_sim.cpp │ │ └── uae_service_sim.linux.version │ ├── platform_service_sim_com.cpp │ ├── quoting_sim.cpp │ ├── uae_service_deploy.c │ └── uae_service_sim.h ├── uinst │ ├── Makefile │ ├── enclave_mngr.cpp │ ├── enclave_mngr.h │ ├── linux │ │ ├── Makefile │ │ ├── get_tcs.c │ │ ├── restore_tls.c │ │ └── set_tls.c │ ├── td_mngr.h │ ├── u_instructions.cpp │ └── u_instructions.h └── urtssim │ ├── Makefile │ ├── cpusvn_util.cpp │ ├── cpusvn_util.h │ ├── enclave_creator_sim.cpp │ ├── enclave_creator_sim.h │ ├── linux │ └── Makefile │ ├── urts_deploy.c │ └── urts_sim.h ├── switchless ├── Makefile ├── README.md └── src │ ├── sgx_ocall_switchless.c │ ├── sl_fcall_mngr.c │ ├── sl_init.c │ ├── sl_memlog.c │ ├── sl_once.c │ ├── sl_printk.c │ ├── sl_siglines.c │ └── sl_workers.c ├── tae_service ├── Makefile ├── tae_config.h └── tae_service.cpp ├── tkey_exchange ├── Makefile ├── simple_vector.cpp ├── simple_vector.h ├── tkey_exchange.cpp └── tkey_exchange_version.cpp ├── tlibc ├── Makefile ├── gdtoa │ ├── arith.h │ ├── dmisc.c │ ├── dtoa.c │ ├── gd_qnan.h │ ├── gdtoa.c │ ├── gdtoa.h │ ├── gdtoaimp.h │ ├── gethex.c │ ├── gmisc.c │ ├── hd_init.c │ ├── hdtoa.c │ ├── hexnan.c │ ├── ldtoa.c │ ├── locks.c │ ├── misc.c │ ├── smisc.c │ ├── strtod.c │ ├── strtodg.c │ ├── strtof.c │ ├── strtold.c │ ├── strtord.c │ ├── strtorx.c │ ├── sum.c │ └── ulp.c ├── gen │ ├── __memcpy_chk.cpp │ ├── __memmove_chk.cpp │ ├── __mempcpy_chk.cpp │ ├── __memset_chk.cpp │ ├── __stpcpy_chk.cpp │ ├── __stpncpy_chk.cpp │ ├── __strcat_chk.cpp │ ├── __strcpy_chk.cpp │ ├── __strlen_chk.cpp │ ├── __strncat_chk.cpp │ ├── __strncpy_chk.cpp │ ├── __vsnprintf_chk.cpp │ ├── __vsprintf_chk.cpp │ ├── alloca.S │ ├── assert.c │ ├── ctype_.c │ ├── ctype_private.h │ ├── errlist.c │ ├── errno.c │ ├── infinity.c │ ├── isctype.c │ ├── nan.c │ ├── sbrk.c │ ├── se_cpuid.c │ ├── spinlock.c │ ├── tolower_.c │ └── toupper_.c ├── locale │ ├── btowc.c │ ├── mblen.c │ ├── mbrlen.c │ ├── mbstowcs.c │ ├── mbtowc.c │ ├── multibyte_citrus_none.c │ ├── runetype.h │ ├── wcscoll.c │ ├── wcstombs.c │ ├── wcsxfrm.c │ ├── wctob.c │ └── wctomb.c ├── math │ ├── w_drem.c │ ├── w_dremf.c │ ├── w_dreml.c │ ├── w_pow10.c │ ├── w_pow10f.c │ └── w_pow10l.c ├── stdio │ ├── fileext.h │ ├── floatio.h │ ├── fvwrite.c │ ├── fvwrite.h │ ├── local.h │ ├── snprintf.c │ ├── swprintf.c │ ├── vfprintf.c │ ├── vfwprintf.c │ ├── vsnprintf.c │ ├── vswprintf.c │ └── wcio.h ├── stdlib │ ├── abs.c │ ├── atof.c │ ├── atoi.c │ ├── atol.c │ ├── atoll.c │ ├── bsearch.c │ ├── div.c │ ├── imaxabs.c │ ├── imaxdiv.c │ ├── labs.c │ ├── ldiv.c │ ├── llabs.c │ ├── lldiv.c │ ├── malloc.c │ ├── qsort.c │ ├── strtoimax.c │ ├── strtol.c │ ├── strtoll.c │ ├── strtoul.c │ ├── strtoull.c │ └── strtoumax.c ├── string │ ├── bcmp.c │ ├── bcopy.c │ ├── bzero.c │ ├── consttime_memequal.c │ ├── ffs.c │ ├── ffsl.c │ ├── ffsll.c │ ├── index.c │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmove.c │ ├── mempcpy.c │ ├── memset.c │ ├── memset_s.c │ ├── rindex.c │ ├── se_string_init.c │ ├── stpncpy.c │ ├── strcasecmp.c │ ├── strchr.c │ ├── strcmp.c │ ├── strcoll.c │ ├── strcspn.c │ ├── strerror.c │ ├── strerror_r.c │ ├── strlcpy.c │ ├── strlen.c │ ├── strncat.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strndup.c │ ├── strnlen.c │ ├── strpbrk.c │ ├── strrchr.c │ ├── strspn.c │ ├── strstr.c │ ├── strtok.c │ ├── strxfrm.c │ ├── wcschr.c │ ├── wcscmp.c │ ├── wcscspn.c │ ├── wcslcpy.c │ ├── wcslen.c │ ├── wcsncat.c │ ├── wcsncmp.c │ ├── wcsncpy.c │ ├── wcspbrk.c │ ├── wcsrchr.c │ ├── wcsspn.c │ ├── wcsstr.c │ ├── wcstok.c │ ├── wcswcs.c │ ├── wmemchr.c │ ├── wmemcmp.c │ ├── wmemcpy.c │ ├── wmemmove.c │ └── wmemset.c ├── time │ ├── asctime.c │ ├── difftime.c │ ├── private.h │ ├── strftime.c │ └── tzfile.h └── tstdc_version.cpp ├── tlibcrypto ├── Makefile ├── ipp │ ├── init_tcrypto_lib.cpp │ ├── ipp_disp │ │ ├── ippcpsgx_disp00000.c │ │ ├── ippcpsgx_disp00001.c │ │ ├── ippcpsgx_disp00002.c │ │ ├── ippcpsgx_disp00003.c │ │ ├── ippcpsgx_disp00004.c │ │ ├── ippcpsgx_disp00005.c │ │ ├── ippcpsgx_disp00006.c │ │ ├── ippcpsgx_disp00007.c │ │ ├── ippcpsgx_disp00008.c │ │ ├── ippcpsgx_disp00009.c │ │ ├── ippcpsgx_disp00010.c │ │ ├── ippcpsgx_disp00011.c │ │ ├── ippcpsgx_disp00012.c │ │ ├── ippcpsgx_disp00013.c │ │ ├── ippcpsgx_disp00014.c │ │ ├── ippcpsgx_disp00015.c │ │ ├── ippcpsgx_disp00016.c │ │ ├── ippcpsgx_disp00017.c │ │ ├── ippcpsgx_disp00018.c │ │ ├── ippcpsgx_disp00019.c │ │ ├── ippcpsgx_disp00020.c │ │ ├── ippcpsgx_disp00021.c │ │ ├── ippcpsgx_disp00022.c │ │ ├── ippcpsgx_disp00023.c │ │ ├── ippcpsgx_disp00024.c │ │ ├── ippcpsgx_disp00025.c │ │ ├── ippcpsgx_disp00026.c │ │ ├── ippcpsgx_disp00027.c │ │ ├── ippcpsgx_disp00028.c │ │ ├── ippcpsgx_disp00029.c │ │ ├── ippcpsgx_disp00030.c │ │ ├── ippcpsgx_disp00031.c │ │ ├── ippcpsgx_disp00032.c │ │ ├── ippcpsgx_disp00033.c │ │ ├── ippcpsgx_disp00034.c │ │ ├── ippcpsgx_disp00035.c │ │ ├── ippcpsgx_disp00036.c │ │ ├── ippcpsgx_disp00037.c │ │ ├── ippcpsgx_disp00038.c │ │ ├── ippcpsgx_disp00039.c │ │ ├── ippcpsgx_disp00040.c │ │ ├── ippcpsgx_disp00041.c │ │ ├── ippcpsgx_disp00042.c │ │ ├── ippcpsgx_disp00043.c │ │ ├── ippcpsgx_disp00044.c │ │ ├── ippcpsgx_disp00045.c │ │ ├── ippcpsgx_disp00046.c │ │ ├── ippcpsgx_disp00047.c │ │ ├── ippcpsgx_disp00048.c │ │ ├── ippcpsgx_disp00049.c │ │ ├── ippcpsgx_disp00050.c │ │ ├── ippcpsgx_disp00051.c │ │ ├── ippcpsgx_disp00052.c │ │ ├── ippcpsgx_disp00053.c │ │ ├── ippcpsgx_disp00054.c │ │ ├── ippcpsgx_disp00055.c │ │ ├── ippcpsgx_disp00056.c │ │ ├── ippcpsgx_disp00057.c │ │ ├── ippcpsgx_disp00058.c │ │ ├── ippcpsgx_disp00059.c │ │ ├── ippcpsgx_disp00060.c │ │ ├── ippcpsgx_disp00061.c │ │ ├── ippcpsgx_disp00062.c │ │ ├── ippcpsgx_disp00063.c │ │ ├── ippcpsgx_disp00064.c │ │ ├── ippcpsgx_disp00065.c │ │ ├── ippcpsgx_disp00066.c │ │ ├── ippcpsgx_disp00067.c │ │ ├── ippcpsgx_disp00068.c │ │ ├── ippcpsgx_disp00069.c │ │ ├── ippcpsgx_disp00070.c │ │ ├── ippcpsgx_disp00071.c │ │ ├── ippcpsgx_disp00072.c │ │ ├── ippcpsgx_disp00073.c │ │ ├── ippcpsgx_disp00074.c │ │ ├── ippcpsgx_disp00075.c │ │ ├── ippcpsgx_disp00076.c │ │ ├── ippcpsgx_disp00077.c │ │ ├── ippcpsgx_disp00078.c │ │ ├── ippcpsgx_disp00079.c │ │ ├── ippcpsgx_disp00080.c │ │ ├── ippcpsgx_disp00081.c │ │ ├── ippcpsgx_disp00082.c │ │ ├── ippcpsgx_disp00083.c │ │ ├── ippcpsgx_disp00084.c │ │ ├── ippcpsgx_disp00085.c │ │ ├── ippcpsgx_disp00086.c │ │ ├── ippcpsgx_disp00087.c │ │ ├── ippcpsgx_disp00088.c │ │ ├── ippcpsgx_disp00089.c │ │ ├── ippcpsgx_disp00090.c │ │ ├── ippcpsgx_disp00091.c │ │ ├── ippcpsgx_disp00092.c │ │ ├── ippcpsgx_disp00093.c │ │ ├── ippcpsgx_disp00094.c │ │ ├── ippcpsgx_disp00095.c │ │ ├── ippcpsgx_disp00096.c │ │ ├── ippcpsgx_disp00097.c │ │ ├── ippcpsgx_disp00098.c │ │ ├── ippcpsgx_disp00099.c │ │ ├── ippcpsgx_disp00100.c │ │ ├── ippcpsgx_disp00101.c │ │ ├── ippcpsgx_disp00102.c │ │ ├── ippcpsgx_disp00103.c │ │ ├── ippcpsgx_disp00104.c │ │ ├── ippcpsgx_disp00105.c │ │ ├── ippcpsgx_disp00106.c │ │ ├── ippcpsgx_disp00107.c │ │ ├── ippcpsgx_disp00108.c │ │ ├── ippcpsgx_disp00109.c │ │ ├── ippcpsgx_disp00110.c │ │ ├── ippcpsgx_disp00111.c │ │ ├── ippcpsgx_disp00112.c │ │ ├── ippcpsgx_disp00113.c │ │ ├── ippcpsgx_disp00114.c │ │ ├── ippcpsgx_disp00115.c │ │ ├── ippcpsgx_disp00116.c │ │ ├── ippcpsgx_disp00117.c │ │ ├── ippcpsgx_disp00118.c │ │ ├── ippcpsgx_disp00119.c │ │ ├── ippcpsgx_disp00120.c │ │ ├── ippcpsgx_disp00121.c │ │ ├── ippcpsgx_disp00122.c │ │ ├── ippcpsgx_disp00123.c │ │ ├── ippcpsgx_disp00124.c │ │ ├── ippcpsgx_disp00125.c │ │ ├── ippcpsgx_disp00126.c │ │ ├── ippcpsgx_disp00127.c │ │ ├── ippcpsgx_disp00128.c │ │ ├── ippcpsgx_disp00129.c │ │ ├── ippcpsgx_disp00130.c │ │ ├── ippcpsgx_disp00131.c │ │ ├── ippcpsgx_disp00132.c │ │ ├── ippcpsgx_disp00133.c │ │ ├── ippcpsgx_disp00134.c │ │ ├── ippcpsgx_disp00135.c │ │ ├── ippcpsgx_disp00136.c │ │ ├── ippcpsgx_disp00137.c │ │ ├── ippcpsgx_disp00138.c │ │ ├── ippcpsgx_disp00139.c │ │ ├── ippcpsgx_disp00140.c │ │ ├── ippcpsgx_disp00141.c │ │ ├── ippcpsgx_disp00142.c │ │ ├── ippcpsgx_disp00143.c │ │ ├── ippcpsgx_disp00144.c │ │ ├── ippcpsgx_disp00145.c │ │ ├── ippcpsgx_disp00146.c │ │ ├── ippcpsgx_disp00147.c │ │ ├── ippcpsgx_disp00148.c │ │ ├── ippcpsgx_disp00149.c │ │ ├── ippcpsgx_disp00150.c │ │ ├── ippcpsgx_disp00151.c │ │ ├── ippcpsgx_disp00152.c │ │ ├── ippcpsgx_disp00153.c │ │ ├── ippcpsgx_disp00154.c │ │ ├── ippcpsgx_disp00155.c │ │ ├── ippcpsgx_disp00156.c │ │ ├── ippcpsgx_disp00157.c │ │ ├── ippcpsgx_disp00158.c │ │ ├── ippcpsgx_disp00159.c │ │ ├── ippcpsgx_disp00160.c │ │ ├── ippcpsgx_disp00161.c │ │ ├── ippcpsgx_disp00162.c │ │ ├── ippcpsgx_disp00163.c │ │ ├── ippcpsgx_disp00164.c │ │ ├── ippcpsgx_disp00165.c │ │ ├── ippcpsgx_disp00166.c │ │ ├── ippcpsgx_disp00167.c │ │ ├── ippcpsgx_disp00168.c │ │ ├── ippcpsgx_disp00169.c │ │ ├── ippcpsgx_disp00170.c │ │ ├── ippcpsgx_disp00171.c │ │ ├── ippcpsgx_disp00172.c │ │ ├── ippcpsgx_disp00173.c │ │ ├── ippcpsgx_disp00174.c │ │ ├── ippcpsgx_disp00175.c │ │ ├── ippcpsgx_disp00176.c │ │ ├── ippcpsgx_disp00177.c │ │ ├── ippcpsgx_disp00178.c │ │ ├── ippcpsgx_disp00179.c │ │ ├── ippcpsgx_disp00180.c │ │ ├── ippcpsgx_disp00181.c │ │ ├── ippcpsgx_disp00182.c │ │ ├── ippcpsgx_disp00183.c │ │ ├── ippcpsgx_disp00184.c │ │ ├── ippcpsgx_disp00185.c │ │ ├── ippcpsgx_disp00186.c │ │ ├── ippcpsgx_disp00187.c │ │ ├── ippcpsgx_disp00188.c │ │ ├── ippcpsgx_disp00189.c │ │ ├── ippcpsgx_disp00190.c │ │ ├── ippcpsgx_disp00191.c │ │ ├── ippcpsgx_disp00192.c │ │ ├── ippcpsgx_disp00193.c │ │ ├── ippcpsgx_disp00194.c │ │ ├── ippcpsgx_disp00195.c │ │ ├── ippcpsgx_disp00196.c │ │ ├── ippcpsgx_disp00197.c │ │ ├── ippcpsgx_disp00198.c │ │ ├── ippcpsgx_disp00199.c │ │ ├── ippcpsgx_disp00200.c │ │ ├── ippcpsgx_disp00201.c │ │ ├── ippcpsgx_disp00202.c │ │ ├── ippcpsgx_disp00203.c │ │ ├── ippcpsgx_disp00204.c │ │ ├── ippcpsgx_disp00205.c │ │ ├── ippcpsgx_disp00206.c │ │ ├── ippcpsgx_disp00207.c │ │ ├── ippcpsgx_disp00208.c │ │ ├── ippcpsgx_disp00209.c │ │ ├── ippcpsgx_disp00210.c │ │ ├── ippcpsgx_disp00211.c │ │ ├── ippcpsgx_disp00212.c │ │ ├── ippcpsgx_disp00213.c │ │ ├── ippcpsgx_disp00214.c │ │ ├── ippcpsgx_disp00215.c │ │ ├── ippcpsgx_disp00216.c │ │ ├── ippcpsgx_disp00217.c │ │ ├── ippcpsgx_disp00218.c │ │ ├── ippcpsgx_disp00219.c │ │ ├── ippcpsgx_disp00220.c │ │ ├── ippcpsgx_disp00221.c │ │ ├── ippcpsgx_disp00222.c │ │ ├── ippcpsgx_disp00223.c │ │ ├── ippcpsgx_disp00224.c │ │ ├── ippcpsgx_disp00225.c │ │ ├── ippcpsgx_disp00226.c │ │ ├── ippcpsgx_disp00227.c │ │ ├── ippcpsgx_disp00228.c │ │ ├── ippcpsgx_disp00229.c │ │ ├── ippcpsgx_disp00230.c │ │ ├── ippcpsgx_disp00231.c │ │ ├── ippcpsgx_disp00232.c │ │ ├── ippcpsgx_disp00233.c │ │ ├── ippcpsgx_disp00234.c │ │ ├── ippcpsgx_disp00235.c │ │ ├── ippcpsgx_disp00236.c │ │ ├── ippcpsgx_disp00237.c │ │ ├── ippcpsgx_disp00238.c │ │ ├── ippcpsgx_disp00239.c │ │ ├── ippcpsgx_disp00240.c │ │ ├── ippcpsgx_disp00241.c │ │ ├── ippcpsgx_disp00242.c │ │ ├── ippcpsgx_disp00243.c │ │ ├── ippcpsgx_disp00244.c │ │ ├── ippcpsgx_disp00245.c │ │ ├── ippcpsgx_disp00246.c │ │ ├── ippcpsgx_disp00247.c │ │ ├── ippcpsgx_disp00248.c │ │ ├── ippcpsgx_disp00249.c │ │ ├── ippcpsgx_disp00250.c │ │ ├── ippcpsgx_disp00251.c │ │ ├── ippcpsgx_disp00252.c │ │ ├── ippcpsgx_disp00253.c │ │ ├── ippcpsgx_disp00254.c │ │ ├── ippcpsgx_disp00255.c │ │ ├── ippcpsgx_disp00256.c │ │ ├── ippcpsgx_disp00257.c │ │ ├── ippcpsgx_disp00258.c │ │ ├── ippcpsgx_disp00259.c │ │ ├── ippcpsgx_disp00260.c │ │ ├── ippcpsgx_disp00261.c │ │ ├── ippcpsgx_disp00262.c │ │ ├── ippcpsgx_disp00263.c │ │ ├── ippcpsgx_disp00264.c │ │ ├── ippcpsgx_disp00265.c │ │ ├── ippcpsgx_disp00266.c │ │ ├── ippcpsgx_disp00267.c │ │ ├── ippcpsgx_disp00268.c │ │ ├── ippcpsgx_disp00269.c │ │ ├── ippcpsgx_disp00270.c │ │ ├── ippcpsgx_disp00271.c │ │ ├── ippcpsgx_disp00272.c │ │ ├── ippcpsgx_disp00273.c │ │ ├── ippcpsgx_disp00274.c │ │ ├── ippcpsgx_disp00275.c │ │ ├── ippcpsgx_disp00276.c │ │ ├── ippcpsgx_disp00277.c │ │ ├── ippcpsgx_disp00278.c │ │ ├── ippcpsgx_disp00279.c │ │ ├── ippcpsgx_disp00280.c │ │ ├── ippcpsgx_disp00281.c │ │ ├── ippcpsgx_disp00282.c │ │ ├── ippcpsgx_disp00283.c │ │ ├── ippcpsgx_disp00284.c │ │ ├── ippcpsgx_disp00285.c │ │ ├── ippcpsgx_disp00286.c │ │ ├── ippcpsgx_disp00287.c │ │ ├── ippcpsgx_disp00288.c │ │ ├── ippcpsgx_disp00289.c │ │ ├── ippcpsgx_disp00290.c │ │ ├── ippcpsgx_disp00291.c │ │ ├── ippcpsgx_disp00292.c │ │ ├── ippcpsgx_disp00293.c │ │ ├── ippcpsgx_disp00294.c │ │ ├── ippcpsgx_disp00295.c │ │ ├── ippcpsgx_disp00296.c │ │ ├── ippcpsgx_disp00297.c │ │ ├── ippcpsgx_disp00298.c │ │ ├── ippcpsgx_disp00299.c │ │ ├── ippcpsgx_disp00300.c │ │ ├── ippcpsgx_disp00301.c │ │ ├── ippcpsgx_disp00302.c │ │ ├── ippcpsgx_disp00303.c │ │ ├── ippcpsgx_disp00304.c │ │ ├── ippcpsgx_disp00305.c │ │ ├── ippcpsgx_disp00306.c │ │ ├── ippcpsgx_disp00307.c │ │ ├── ippcpsgx_disp00308.c │ │ ├── ippcpsgx_disp00309.c │ │ ├── ippcpsgx_disp00310.c │ │ ├── ippcpsgx_disp00311.c │ │ ├── ippcpsgx_disp00312.c │ │ ├── ippcpsgx_disp00313.c │ │ ├── ippcpsgx_disp00314.c │ │ ├── ippcpsgx_disp00315.c │ │ ├── ippcpsgx_disp00316.c │ │ ├── ippcpsgx_disp00317.c │ │ ├── ippcpsgx_disp00318.c │ │ ├── ippcpsgx_disp00319.c │ │ ├── ippcpsgx_disp00320.c │ │ ├── ippcpsgx_disp00321.c │ │ ├── ippcpsgx_disp00322.c │ │ ├── ippcpsgx_disp00323.c │ │ ├── ippcpsgx_disp00324.c │ │ ├── ippcpsgx_disp00325.c │ │ ├── ippcpsgx_disp00326.c │ │ ├── ippcpsgx_disp00327.c │ │ ├── ippcpsgx_disp00328.c │ │ ├── ippcpsgx_disp00329.c │ │ ├── ippcpsgx_disp00330.c │ │ ├── ippcpsgx_disp00331.c │ │ ├── ippcpsgx_disp00332.c │ │ ├── ippcpsgx_disp00333.c │ │ ├── ippcpsgx_disp00334.c │ │ ├── ippcpsgx_disp00335.c │ │ ├── ippcpsgx_disp00336.c │ │ ├── ippcpsgx_disp00337.c │ │ ├── ippcpsgx_disp00338.c │ │ ├── ippcpsgx_disp00339.c │ │ ├── ippcpsgx_disp00340.c │ │ ├── ippcpsgx_disp00341.c │ │ ├── ippcpsgx_disp00342.c │ │ ├── ippcpsgx_disp00343.c │ │ ├── ippcpsgx_disp00344.c │ │ ├── ippcpsgx_disp00345.c │ │ ├── ippcpsgx_disp00346.c │ │ ├── ippcpsgx_disp00347.c │ │ ├── ippcpsgx_disp00348.c │ │ ├── ippcpsgx_disp00349.c │ │ ├── ippcpsgx_disp00350.c │ │ ├── ippcpsgx_disp00351.c │ │ ├── ippcpsgx_disp00352.c │ │ ├── ippcpsgx_disp00353.c │ │ ├── ippcpsgx_disp00354.c │ │ ├── ippcpsgx_disp00355.c │ │ ├── ippcpsgx_disp00356.c │ │ ├── ippcpsgx_disp00357.c │ │ ├── ippcpsgx_disp00358.c │ │ ├── ippcpsgx_disp00359.c │ │ ├── ippcpsgx_disp00360.c │ │ ├── ippcpsgx_disp00361.c │ │ ├── ippcpsgx_disp00362.c │ │ ├── ippcpsgx_disp00363.c │ │ ├── ippcpsgx_disp00364.c │ │ ├── ippcpsgx_disp00365.c │ │ ├── ippcpsgx_disp00366.c │ │ ├── ippcpsgx_disp00367.c │ │ ├── ippcpsgx_disp00368.c │ │ ├── ippcpsgx_disp00369.c │ │ ├── ippcpsgx_disp00370.c │ │ ├── ippcpsgx_disp00371.c │ │ ├── ippcpsgx_disp00372.c │ │ ├── ippcpsgx_disp00373.c │ │ ├── ippcpsgx_disp00374.c │ │ ├── ippcpsgx_disp00375.c │ │ ├── ippcpsgx_disp00376.c │ │ ├── ippcpsgx_disp00377.c │ │ ├── ippcpsgx_disp00378.c │ │ ├── ippcpsgx_disp00379.c │ │ ├── ippcpsgx_disp00380.c │ │ ├── ippcpsgx_disp00381.c │ │ ├── ippcpsgx_disp00382.c │ │ ├── ippcpsgx_disp00383.c │ │ ├── ippcpsgx_disp00384.c │ │ ├── ippcpsgx_disp00385.c │ │ ├── ippcpsgx_disp00386.c │ │ ├── ippcpsgx_disp00387.c │ │ ├── ippcpsgx_disp00388.c │ │ ├── ippcpsgx_disp00389.c │ │ ├── ippcpsgx_disp00390.c │ │ ├── ippcpsgx_disp00391.c │ │ ├── ippcpsgx_disp00392.c │ │ ├── ippcpsgx_disp00393.c │ │ ├── ippcpsgx_disp00394.c │ │ ├── ippcpsgx_disp00395.c │ │ ├── ippcpsgx_disp00396.c │ │ ├── ippcpsgx_disp00397.c │ │ ├── ippcpsgx_disp00398.c │ │ ├── ippcpsgx_disp00399.c │ │ ├── ippcpsgx_disp00400.c │ │ ├── ippcpsgx_disp00401.c │ │ ├── ippcpsgx_disp00402.c │ │ ├── ippcpsgx_disp00403.c │ │ ├── ippcpsgx_disp00404.c │ │ ├── ippcpsgx_disp00405.c │ │ ├── ippcpsgx_disp00406.c │ │ ├── ippcpsgx_disp00407.c │ │ ├── ippcpsgx_disp00408.c │ │ ├── ippcpsgx_disp00409.c │ │ ├── ippcpsgx_disp00410.c │ │ ├── ippcpsgx_disp00411.c │ │ ├── ippcpsgx_disp00412.c │ │ ├── ippcpsgx_disp00413.c │ │ ├── ippcpsgx_disp00414.c │ │ ├── ippcpsgx_disp00415.c │ │ ├── ippcpsgx_disp00416.c │ │ ├── ippcpsgx_disp00417.c │ │ ├── ippcpsgx_disp00418.c │ │ ├── ippcpsgx_disp00419.c │ │ ├── ippcpsgx_disp00420.c │ │ ├── ippcpsgx_disp00421.c │ │ ├── ippcpsgx_disp00422.c │ │ ├── ippcpsgx_disp00423.c │ │ ├── ippcpsgx_disp00424.c │ │ ├── ippcpsgx_disp00425.c │ │ ├── ippcpsgx_disp00426.c │ │ ├── ippcpsgx_disp00427.c │ │ ├── ippcpsgx_disp00428.c │ │ ├── ippcpsgx_disp00429.c │ │ ├── ippcpsgx_disp00430.c │ │ ├── ippcpsgx_disp00431.c │ │ ├── ippcpsgx_disp00432.c │ │ ├── ippcpsgx_disp00433.c │ │ ├── ippcpsgx_disp00434.c │ │ ├── ippcpsgx_disp00435.c │ │ ├── ippcpsgx_disp00436.c │ │ ├── ippcpsgx_disp00437.c │ │ ├── ippcpsgx_disp00438.c │ │ ├── ippcpsgx_disp00439.c │ │ ├── ippcpsgx_disp00440.c │ │ ├── ippcpsgx_disp00441.c │ │ ├── ippcpsgx_disp00442.c │ │ ├── ippcpsgx_disp00443.c │ │ ├── ippcpsgx_disp00444.c │ │ ├── ippcpsgx_disp00445.c │ │ ├── ippcpsgx_disp00446.c │ │ ├── ippcpsgx_disp00447.c │ │ ├── ippcpsgx_disp00448.c │ │ ├── ippcpsgx_disp00449.c │ │ ├── ippcpsgx_disp00450.c │ │ ├── ippcpsgx_disp00451.c │ │ ├── ippcpsgx_disp00452.c │ │ ├── ippcpsgx_disp00453.c │ │ ├── ippcpsgx_disp00454.c │ │ ├── ippcpsgx_disp00455.c │ │ ├── ippcpsgx_disp00456.c │ │ ├── ippcpsgx_disp00457.c │ │ ├── ippcpsgx_disp00458.c │ │ ├── ippcpsgx_disp00459.c │ │ ├── ippcpsgx_disp00460.c │ │ ├── ippcpsgx_disp00461.c │ │ ├── ippcpsgx_disp00462.c │ │ ├── ippcpsgx_disp00463.c │ │ ├── ippcpsgx_disp00464.c │ │ ├── ippcpsgx_disp00465.c │ │ ├── ippcpsgx_disp00466.c │ │ ├── ippcpsgx_disp00467.c │ │ ├── ippcpsgx_disp00468.c │ │ ├── ippcpsgx_disp00469.c │ │ ├── ippcpsgx_disp00470.c │ │ ├── ippcpsgx_disp00471.c │ │ ├── ippcpsgx_disp00472.c │ │ ├── ippcpsgx_disp00473.c │ │ ├── ippcpsgx_disp00474.c │ │ ├── ippcpsgx_disp00475.c │ │ ├── ippcpsgx_disp00476.c │ │ ├── ippcpsgx_disp00477.c │ │ ├── ippcpsgx_disp00478.c │ │ ├── ippcpsgx_disp00479.c │ │ ├── ippcpsgx_disp00480.c │ │ ├── ippcpsgx_disp00481.c │ │ ├── ippcpsgx_disp00482.c │ │ ├── ippcpsgx_disp00483.c │ │ ├── ippcpsgx_disp00484.c │ │ ├── ippcpsgx_disp00485.c │ │ ├── ippcpsgx_disp00486.c │ │ ├── ippcpsgx_disp00487.c │ │ ├── ippcpsgx_disp00488.c │ │ ├── ippcpsgx_disp00489.c │ │ ├── ippcpsgx_disp00490.c │ │ ├── ippcpsgx_disp00491.c │ │ ├── ippcpsgx_disp00492.c │ │ ├── ippcpsgx_disp00493.c │ │ └── ippcpsgx_disp00494.c │ ├── sgx_aes_ctr.cpp │ ├── sgx_aes_gcm.cpp │ ├── sgx_cmac128.cpp │ ├── sgx_ecc256.cpp │ ├── sgx_ecc256_ecdsa.cpp │ ├── sgx_ecc256_internal.cpp │ ├── sgx_hmac.cpp │ ├── sgx_internal.cpp │ ├── sgx_rsa3072.cpp │ ├── sgx_rsa_encryption.cpp │ ├── sgx_rsa_internal.cpp │ ├── sgx_sha1.cpp │ ├── sgx_sha256.cpp │ ├── sgx_sha256_msg.cpp │ └── sgx_tcrypto_common.cpp ├── sgx_common_init_ipp.cpp ├── sgxssl │ ├── init_tcrypto_lib.cpp │ ├── sgx_aes_ctr.cpp │ ├── sgx_aes_gcm.cpp │ ├── sgx_cmac128.cpp │ ├── sgx_ecc256.cpp │ ├── sgx_ecc256_ecdsa.cpp │ ├── sgx_ecc256_internal.cpp │ ├── sgx_hmac.cpp │ ├── sgx_internal.cpp │ ├── sgx_rsa3072.cpp │ ├── sgx_rsa_encryption.cpp │ ├── sgx_sha1.cpp │ ├── sgx_sha256.cpp │ └── sgx_sha256_msg.cpp └── tcrypto_version.cpp ├── tlibcxx ├── LICENSE.TXT ├── Makefile ├── README.sgx ├── include │ ├── CMakeLists.txt │ ├── __bit_reference │ ├── __bsd_locale_defaults.h │ ├── __bsd_locale_fallbacks.h │ ├── __config │ ├── __config_site.in │ ├── __debug │ ├── __functional_03 │ ├── __functional_base │ ├── __functional_base_03 │ ├── __hash_table │ ├── __locale │ ├── __mutex_base │ ├── __nullptr │ ├── __refstring │ ├── __sgx │ ├── __split_buffer │ ├── __sso_allocator │ ├── __std_stream │ ├── __threading_support │ ├── __tree │ ├── __tuple │ ├── __undef___deallocate │ ├── __undef_min_max │ ├── algorithm │ ├── array │ ├── atomic │ ├── bitset │ ├── cassert │ ├── ccomplex │ ├── cctype │ ├── cerrno │ ├── cfenv │ ├── cfloat │ ├── chrono │ ├── cinttypes │ ├── ciso646 │ ├── climits │ ├── clocale │ ├── cmath │ ├── codecvt │ ├── complex │ ├── complex.h │ ├── condition_variable │ ├── csetjmp │ ├── csignal │ ├── cstdarg │ ├── cstdbool │ ├── cstddef │ ├── cstdint │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctgmath │ ├── ctime │ ├── cwchar │ ├── cwctype │ ├── deque │ ├── exception │ ├── experimental │ │ ├── __config │ │ ├── __memory │ │ ├── algorithm │ │ ├── any │ │ ├── chrono │ │ ├── deque │ │ ├── dynarray │ │ ├── filesystem │ │ ├── forward_list │ │ ├── functional │ │ ├── iterator │ │ ├── list │ │ ├── map │ │ ├── memory_resource │ │ ├── optional │ │ ├── propagate_const │ │ ├── ratio │ │ ├── regex │ │ ├── set │ │ ├── string │ │ ├── string_view │ │ ├── system_error │ │ ├── tuple │ │ ├── type_traits │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ └── vector │ ├── ext │ │ ├── __hash │ │ ├── hash_map │ │ └── hash_set │ ├── forward_list │ ├── fstream │ ├── functional │ ├── future │ ├── initializer_list │ ├── inttypes.h │ ├── iomanip │ ├── ios │ ├── iosfwd │ ├── iostream │ ├── istream │ ├── iterator │ ├── limits │ ├── list │ ├── locale │ ├── map │ ├── memory │ ├── module.modulemap │ ├── mutex │ ├── new │ ├── numeric │ ├── ostream │ ├── queue │ ├── random │ ├── ratio │ ├── regex │ ├── scoped_allocator │ ├── set │ ├── shared_mutex │ ├── sstream │ ├── stack │ ├── stdbool.h │ ├── stdexcept │ ├── streambuf │ ├── string │ ├── strstream │ ├── support │ │ ├── android │ │ │ └── locale_bionic.h │ │ ├── ibm │ │ │ ├── limits.h │ │ │ ├── locale_mgmt_aix.h │ │ │ ├── support.h │ │ │ └── xlocale.h │ │ ├── musl │ │ │ └── xlocale.h │ │ ├── newlib │ │ │ └── xlocale.h │ │ ├── sgx │ │ │ ├── __sgx_mutex_base │ │ │ ├── sgx_condition_variable │ │ │ ├── sgx_invoke │ │ │ └── sgx_mutex │ │ ├── solaris │ │ │ ├── floatingpoint.h │ │ │ ├── wchar.h │ │ │ └── xlocale.h │ │ ├── win32 │ │ │ ├── limits_win32.h │ │ │ ├── locale_mgmt_win32.h │ │ │ ├── locale_win32.h │ │ │ ├── math_win32.h │ │ │ └── support.h │ │ └── xlocale │ │ │ ├── __nop_locale_mgmt.h │ │ │ ├── __posix_l_fallback.h │ │ │ ├── __strtonum_fallback.h │ │ │ └── xlocale.h │ ├── system_error │ ├── tgmath.h │ ├── thread │ ├── tuple │ ├── type_traits │ ├── typeindex │ ├── typeinfo │ ├── unordered_map │ ├── unordered_set │ ├── utility │ ├── valarray │ └── vector └── src │ ├── algorithm.cpp │ ├── any.cpp │ ├── bind.cpp │ ├── chrono.cpp │ ├── condition_variable.cpp │ ├── debug.cpp │ ├── exception.cpp │ ├── experimental │ ├── filesystem │ │ ├── directory_iterator.cpp │ │ ├── operations.cpp │ │ └── path.cpp │ └── memory_resource.cpp │ ├── future.cpp │ ├── hash.cpp │ ├── include │ ├── atomic_support.h │ └── config_elast.h │ ├── ios.cpp │ ├── iostream.cpp │ ├── locale.cpp │ ├── memory.cpp │ ├── mutex.cpp │ ├── new.cpp │ ├── optional.cpp │ ├── random.cpp │ ├── regex.cpp │ ├── sgx_condition_variable.cpp │ ├── sgx_mutex.cpp │ ├── shared_mutex.cpp │ ├── stdexcept.cpp │ ├── string.cpp │ ├── strstream.cpp │ ├── support │ ├── solaris │ │ ├── README │ │ ├── mbsnrtowcs.inc │ │ ├── wcsnrtombs.inc │ │ └── xlocale.c │ └── win32 │ │ ├── locale_win32.cpp │ │ └── support.cpp │ ├── system_error.cpp │ ├── thread.cpp │ ├── typeinfo.cpp │ ├── utility.cpp │ └── valarray.cpp ├── tlibthread ├── Makefile ├── sethread_cond.cpp ├── sethread_internal.h ├── sethread_mutex.cpp └── sethread_utils.cpp ├── trts ├── Makefile ├── init_enclave.cpp ├── init_optimized_lib.cpp ├── init_optimized_lib.h ├── linux │ ├── Makefile │ ├── elf_parser.c │ ├── elf_parser.h │ ├── global_init.c │ ├── metadata_sec.S │ ├── tls_support.c │ ├── trts_pic.S │ └── trts_pic.h ├── trts.cpp ├── trts_add_trim.cpp ├── trts_ecall.cpp ├── trts_emodpr.cpp ├── trts_emodpr.h ├── trts_internal.h ├── trts_nsp.cpp ├── trts_ocall.cpp ├── trts_shared_constants.h ├── trts_switchless.cpp ├── trts_trim.cpp ├── trts_trim.h ├── trts_util.cpp ├── trts_util.h ├── trts_veh.cpp ├── trts_version.cpp └── trts_xsave.cpp ├── tsafecrt ├── Makefile └── pal │ ├── inc │ └── pal_mstypes.h │ └── src │ └── safecrt │ ├── internal_securecrt.h │ ├── mbusafecrt.c │ ├── mbusafecrt_internal.h │ ├── memcpy_s.c │ ├── memomve_s.c │ ├── output.inl │ ├── safecrt_output_s.c │ ├── safecrt_woutput_s.c │ ├── sprintf.c │ ├── strcat_s.c │ ├── strcpy_s.c │ ├── strncat_s.c │ ├── strncpy_s.c │ ├── strtok_s.c │ ├── swprintf_s.c │ ├── tcscat_s.inl │ ├── tcscpy_s.inl │ ├── tcsncat_s.inl │ ├── tcsncpy_s.inl │ ├── tcstok_s.inl │ ├── vsprintf.c │ ├── vswprint.c │ ├── wcscat_s.c │ ├── wcscpy_s.c │ ├── wcslen_s.c │ ├── wcsncat_s.c │ ├── wcsncpy_s.c │ ├── wcstok_s.c │ ├── xtoa_s.c │ ├── xtow_s.c │ └── xtox_s.inl ├── tseal ├── linux │ └── Makefile ├── tSeal.cpp ├── tSeal_aad.cpp ├── tSeal_internal.cpp ├── tSeal_internal.h └── tSeal_util.cpp ├── tsetjmp ├── Makefile └── _setjmp.S └── ukey_exchange ├── Makefile ├── ukey_exchange.cpp └── ukey_exchange_version.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/License.txt -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/Linux_SGXEclipsePlugin/build.sh -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/build_directory/plugins/com.intel.sgx/discovery/test.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/build_directory/plugins/com.intel.sgx/discovery/test.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/Linux_SGXEclipsePlugin/clean.sh -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/Linux_SGXEclipsePlugin/readme.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/README.md -------------------------------------------------------------------------------- /SampleCode/Cxx11SGXDemo/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Cxx11SGXDemo/.cproject -------------------------------------------------------------------------------- /SampleCode/Cxx11SGXDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Cxx11SGXDemo/.project -------------------------------------------------------------------------------- /SampleCode/Cxx11SGXDemo/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Cxx11SGXDemo/App/App.h -------------------------------------------------------------------------------- /SampleCode/Cxx11SGXDemo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Cxx11SGXDemo/Makefile -------------------------------------------------------------------------------- /SampleCode/SampleEnclave/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SampleEnclave/.project -------------------------------------------------------------------------------- /SampleCode/SampleEnclave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SampleEnclave/Makefile -------------------------------------------------------------------------------- /SampleCode/SealedData/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SealedData/.cproject -------------------------------------------------------------------------------- /SampleCode/SealedData/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SealedData/.project -------------------------------------------------------------------------------- /SampleCode/SealedData/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SealedData/Makefile -------------------------------------------------------------------------------- /SampleCode/SealedData/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/SealedData/README.txt -------------------------------------------------------------------------------- /SampleCode/Switchless/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Switchless/App/App.cpp -------------------------------------------------------------------------------- /SampleCode/Switchless/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Switchless/App/App.h -------------------------------------------------------------------------------- /SampleCode/Switchless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Switchless/Makefile -------------------------------------------------------------------------------- /SampleCode/Switchless/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/SampleCode/Switchless/README.txt -------------------------------------------------------------------------------- /common/inc/internal/ae_ipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/ae_ipp.h -------------------------------------------------------------------------------- /common/inc/internal/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/arch.h -------------------------------------------------------------------------------- /common/inc/internal/cpputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/cpputil.h -------------------------------------------------------------------------------- /common/inc/internal/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/cpuid.h -------------------------------------------------------------------------------- /common/inc/internal/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/dh.h -------------------------------------------------------------------------------- /common/inc/internal/driver_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/driver_api.h -------------------------------------------------------------------------------- /common/inc/internal/elf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/elf_util.h -------------------------------------------------------------------------------- /common/inc/internal/global_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/global_data.h -------------------------------------------------------------------------------- /common/inc/internal/global_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/global_init.h -------------------------------------------------------------------------------- /common/inc/internal/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/inst.h -------------------------------------------------------------------------------- /common/inc/internal/ipp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/ipp_wrapper.h -------------------------------------------------------------------------------- /common/inc/internal/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/metadata.h -------------------------------------------------------------------------------- /common/inc/internal/pcl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/pcl_common.h -------------------------------------------------------------------------------- /common/inc/internal/routine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/routine.h -------------------------------------------------------------------------------- /common/inc/internal/rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/rts.h -------------------------------------------------------------------------------- /common/inc/internal/rts_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/rts_cmd.h -------------------------------------------------------------------------------- /common/inc/internal/se_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_atomic.h -------------------------------------------------------------------------------- /common/inc/internal/se_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_cdefs.h -------------------------------------------------------------------------------- /common/inc/internal/se_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_event.h -------------------------------------------------------------------------------- /common/inc/internal/se_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_lock.hpp -------------------------------------------------------------------------------- /common/inc/internal/se_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_macro.h -------------------------------------------------------------------------------- /common/inc/internal/se_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_map.h -------------------------------------------------------------------------------- /common/inc/internal/se_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_memcpy.h -------------------------------------------------------------------------------- /common/inc/internal/se_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_memory.h -------------------------------------------------------------------------------- /common/inc/internal/se_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_rwlock.h -------------------------------------------------------------------------------- /common/inc/internal/se_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_stdio.h -------------------------------------------------------------------------------- /common/inc/internal/se_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_string.h -------------------------------------------------------------------------------- /common/inc/internal/se_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_thread.h -------------------------------------------------------------------------------- /common/inc/internal/se_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_time.h -------------------------------------------------------------------------------- /common/inc/internal/se_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_trace.h -------------------------------------------------------------------------------- /common/inc/internal/se_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_types.h -------------------------------------------------------------------------------- /common/inc/internal/se_vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_vendor.h -------------------------------------------------------------------------------- /common/inc/internal/se_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_version.h -------------------------------------------------------------------------------- /common/inc/internal/se_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/se_wrapper.h -------------------------------------------------------------------------------- /common/inc/internal/sgx_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sgx_profile.h -------------------------------------------------------------------------------- /common/inc/internal/sl_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_atomic.h -------------------------------------------------------------------------------- /common/inc/internal/sl_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_bitops.h -------------------------------------------------------------------------------- /common/inc/internal/sl_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_compiler.h -------------------------------------------------------------------------------- /common/inc/internal/sl_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_debug.h -------------------------------------------------------------------------------- /common/inc/internal/sl_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_init.h -------------------------------------------------------------------------------- /common/inc/internal/sl_memlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_memlog.h -------------------------------------------------------------------------------- /common/inc/internal/sl_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_once.h -------------------------------------------------------------------------------- /common/inc/internal/sl_printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_printk.h -------------------------------------------------------------------------------- /common/inc/internal/sl_siglines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_siglines.h -------------------------------------------------------------------------------- /common/inc/internal/sl_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_spinlock.h -------------------------------------------------------------------------------- /common/inc/internal/sl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_types.h -------------------------------------------------------------------------------- /common/inc/internal/sl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_util.h -------------------------------------------------------------------------------- /common/inc/internal/sl_workers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/sl_workers.h -------------------------------------------------------------------------------- /common/inc/internal/ssl_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/ssl_wrapper.h -------------------------------------------------------------------------------- /common/inc/internal/thread_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/thread_data.h -------------------------------------------------------------------------------- /common/inc/internal/trts_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/trts_inst.h -------------------------------------------------------------------------------- /common/inc/internal/uncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/uncopyable.h -------------------------------------------------------------------------------- /common/inc/internal/uswitchless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/uswitchless.h -------------------------------------------------------------------------------- /common/inc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/util.h -------------------------------------------------------------------------------- /common/inc/internal/xsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/internal/xsave.h -------------------------------------------------------------------------------- /common/inc/sgx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx.h -------------------------------------------------------------------------------- /common/inc/sgx_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_attributes.h -------------------------------------------------------------------------------- /common/inc/sgx_capable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_capable.h -------------------------------------------------------------------------------- /common/inc/sgx_cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_cpuid.h -------------------------------------------------------------------------------- /common/inc/sgx_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_defs.h -------------------------------------------------------------------------------- /common/inc/sgx_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_dh.h -------------------------------------------------------------------------------- /common/inc/sgx_ecp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_ecp_types.h -------------------------------------------------------------------------------- /common/inc/sgx_edger8r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_edger8r.h -------------------------------------------------------------------------------- /common/inc/sgx_eid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_eid.h -------------------------------------------------------------------------------- /common/inc/sgx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_error.h -------------------------------------------------------------------------------- /common/inc/sgx_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_intrin.h -------------------------------------------------------------------------------- /common/inc/sgx_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_key.h -------------------------------------------------------------------------------- /common/inc/sgx_key_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_key_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_lfence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_lfence.h -------------------------------------------------------------------------------- /common/inc/sgx_mage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_mage.h -------------------------------------------------------------------------------- /common/inc/sgx_pcl_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_pcl_guid.h -------------------------------------------------------------------------------- /common/inc/sgx_quote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_quote.h -------------------------------------------------------------------------------- /common/inc/sgx_random_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_random_buffers.h -------------------------------------------------------------------------------- /common/inc/sgx_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_report.h -------------------------------------------------------------------------------- /common/inc/sgx_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_spinlock.h -------------------------------------------------------------------------------- /common/inc/sgx_tae_service.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tae_service.edl -------------------------------------------------------------------------------- /common/inc/sgx_tae_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tae_service.h -------------------------------------------------------------------------------- /common/inc/sgx_tcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tcrypto.h -------------------------------------------------------------------------------- /common/inc/sgx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_thread.h -------------------------------------------------------------------------------- /common/inc/sgx_tkey_exchange.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tkey_exchange.edl -------------------------------------------------------------------------------- /common/inc/sgx_tkey_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tkey_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_tprotected_fs.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tprotected_fs.edl -------------------------------------------------------------------------------- /common/inc/sgx_tprotected_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tprotected_fs.h -------------------------------------------------------------------------------- /common/inc/sgx_trts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_trts.h -------------------------------------------------------------------------------- /common/inc/sgx_trts_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_trts_exception.h -------------------------------------------------------------------------------- /common/inc/sgx_tseal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tseal.h -------------------------------------------------------------------------------- /common/inc/sgx_tstdc.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_tstdc.edl -------------------------------------------------------------------------------- /common/inc/sgx_uae_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_uae_service.h -------------------------------------------------------------------------------- /common/inc/sgx_ukey_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_ukey_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_urts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_urts.h -------------------------------------------------------------------------------- /common/inc/sgx_uswitchless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_uswitchless.h -------------------------------------------------------------------------------- /common/inc/sgx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/sgx_utils.h -------------------------------------------------------------------------------- /common/inc/stdc++/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/stdc++/exception -------------------------------------------------------------------------------- /common/inc/stdc++/linux/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/stdc++/linux/exception -------------------------------------------------------------------------------- /common/inc/stdc++/linux/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/stdc++/linux/typeinfo -------------------------------------------------------------------------------- /common/inc/stdc++/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/stdc++/new -------------------------------------------------------------------------------- /common/inc/stdc++/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/stdc++/typeinfo -------------------------------------------------------------------------------- /common/inc/tlibc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/assert.h -------------------------------------------------------------------------------- /common/inc/tlibc/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/complex.h -------------------------------------------------------------------------------- /common/inc/tlibc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/ctype.h -------------------------------------------------------------------------------- /common/inc/tlibc/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/endian.h -------------------------------------------------------------------------------- /common/inc/tlibc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/errno.h -------------------------------------------------------------------------------- /common/inc/tlibc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/float.h -------------------------------------------------------------------------------- /common/inc/tlibc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/inttypes.h -------------------------------------------------------------------------------- /common/inc/tlibc/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/iso646.h -------------------------------------------------------------------------------- /common/inc/tlibc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/limits.h -------------------------------------------------------------------------------- /common/inc/tlibc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/math.h -------------------------------------------------------------------------------- /common/inc/tlibc/mbusafecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/mbusafecrt.h -------------------------------------------------------------------------------- /common/inc/tlibc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/setjmp.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stdarg.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stdbool.h -------------------------------------------------------------------------------- /common/inc/tlibc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stddef.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stdint.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stdio.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/stdlib.h -------------------------------------------------------------------------------- /common/inc/tlibc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/string.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/_types.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/cdefs.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/endian.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/ieee.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/limits.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/stdint.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/sys/types.h -------------------------------------------------------------------------------- /common/inc/tlibc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/time.h -------------------------------------------------------------------------------- /common/inc/tlibc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/unistd.h -------------------------------------------------------------------------------- /common/inc/tlibc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/wchar.h -------------------------------------------------------------------------------- /common/inc/tlibc/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/inc/tlibc/wctype.h -------------------------------------------------------------------------------- /common/se_wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/se_wrapper/Makefile -------------------------------------------------------------------------------- /common/src/crypto_cmac_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/crypto_cmac_128.cpp -------------------------------------------------------------------------------- /common/src/crypto_evp_digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/crypto_evp_digest.cpp -------------------------------------------------------------------------------- /common/src/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/dh.cpp -------------------------------------------------------------------------------- /common/src/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/ecp.cpp -------------------------------------------------------------------------------- /common/src/linux/xsave_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/linux/xsave_gnu.S -------------------------------------------------------------------------------- /common/src/se_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_event.c -------------------------------------------------------------------------------- /common/src/se_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_map.c -------------------------------------------------------------------------------- /common/src/se_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_memory.c -------------------------------------------------------------------------------- /common/src/se_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_rwlock.c -------------------------------------------------------------------------------- /common/src/se_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_thread.c -------------------------------------------------------------------------------- /common/src/se_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_time.c -------------------------------------------------------------------------------- /common/src/se_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/se_trace.c -------------------------------------------------------------------------------- /common/src/sgx_memset_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sgx_memset_s.cpp -------------------------------------------------------------------------------- /common/src/sgx_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sgx_profile.cpp -------------------------------------------------------------------------------- /common/src/sgx_read_rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sgx_read_rand.cpp -------------------------------------------------------------------------------- /common/src/sgx_sha256_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sgx_sha256_128.cpp -------------------------------------------------------------------------------- /common/src/sl_fcall_mngr_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sl_fcall_mngr_common.c -------------------------------------------------------------------------------- /common/src/sl_memlog_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sl_memlog_common.c -------------------------------------------------------------------------------- /common/src/sl_once_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sl_once_common.c -------------------------------------------------------------------------------- /common/src/sl_siglines_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/common/src/sl_siglines_common.c -------------------------------------------------------------------------------- /download_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/download_prebuilt.sh -------------------------------------------------------------------------------- /external/CppMicroServices/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/CppMicroServices/LICENSE -------------------------------------------------------------------------------- /external/CppMicroServices/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/CppMicroServices/conf.py -------------------------------------------------------------------------------- /external/CppMicroServices/framework/doc/snippets/uServices-resources-cmake/hello.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources/dynamic.txt: -------------------------------------------------------------------------------- 1 | dynamic 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources/res.txt: -------------------------------------------------------------------------------- 1 | dynamic resource 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources_static/res.txt: -------------------------------------------------------------------------------- 1 | static resource 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources_static/static.txt: -------------------------------------------------------------------------------- 1 | static 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithAppendedResources/resources/foo.txt: -------------------------------------------------------------------------------- 1 | afoo and 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithLinkedResources/resources/foo.txt: -------------------------------------------------------------------------------- 1 | afoo andasf 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithResources/resources/foo.txt: -------------------------------------------------------------------------------- 1 | foo and 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithResources/resources/icons/readme.txt: -------------------------------------------------------------------------------- 1 | icons 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/driver/TestResource.txt: -------------------------------------------------------------------------------- 1 | meant to be compiled into the test driver 2 | -------------------------------------------------------------------------------- /external/DALSdk/JHI/linux/jhi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/DALSdk/JHI/linux/jhi.h -------------------------------------------------------------------------------- /external/epid-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /external/epid-sdk/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/LICENSE.txt -------------------------------------------------------------------------------- /external/epid-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/Makefile -------------------------------------------------------------------------------- /external/epid-sdk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/Makefile.in -------------------------------------------------------------------------------- /external/epid-sdk/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/NOTICE.txt -------------------------------------------------------------------------------- /external/epid-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/README.md -------------------------------------------------------------------------------- /external/epid-sdk/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/SConstruct -------------------------------------------------------------------------------- /external/epid-sdk/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/epid-sdk/configure -------------------------------------------------------------------------------- /external/rdrand/rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/rdrand.h -------------------------------------------------------------------------------- /external/rdrand/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/Makefile.in -------------------------------------------------------------------------------- /external/rdrand/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/README -------------------------------------------------------------------------------- /external/rdrand/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/config.h.in -------------------------------------------------------------------------------- /external/rdrand/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/configure -------------------------------------------------------------------------------- /external/rdrand/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/configure.ac -------------------------------------------------------------------------------- /external/rdrand/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/main.c -------------------------------------------------------------------------------- /external/rdrand/src/rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/rdrand.c -------------------------------------------------------------------------------- /external/rdrand/src/rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/rdrand/src/rdrand.h -------------------------------------------------------------------------------- /external/sgx_libm/ia32/acos_wmt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/acos_wmt.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/acoshl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/acoshl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/acosl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/acosl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/asin_wmt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/asin_wmt.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/asinhl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/asinhl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/asinl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/asinl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/atan2dl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/atan2dl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/atan2l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/atan2l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/atan_wmt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/atan_wmt.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/atanhl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/atanhl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/atanl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/atanl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cabs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cabs.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cabsf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cabsf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cabsl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cabsl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacos.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacosf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacosf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacosh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacosh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacoshf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacoshf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacoshl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacoshl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cacosl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cacosl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/carg.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/carg.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cargf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cargf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cargl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cargl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/casin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/casin.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/casinh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/casinh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/casinhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/casinhf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/casinhl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/casinhl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/casinl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/casinl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/catan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/catan.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/catanh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/catanh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/catanhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/catanhf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cbrtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cbrtl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ccos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ccos.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ccosh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ccosh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ccosl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ccosl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ceill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ceill.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cexpl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cexpl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cimag.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cimag.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/clogl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/clogl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/conj.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/conj.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/conjf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/conjf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/conjl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/conjl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cosdl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cosdl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/coshl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/coshl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cosl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cosl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cpow.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cpow.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cpowl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cpowl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/cproj.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/cproj.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/creal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/creal.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/csin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/csin.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/csinh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/csinh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/csinl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/csinl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ctan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ctan.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ctanh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ctanh.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ctanl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ctanl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erfc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erfc.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erfcf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erfcf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erfcl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erfcl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erff.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/erfl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/erfl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/exp2l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/exp2l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/expl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/expl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fabs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fabs.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fabsf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fabsf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fabsl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fabsl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fdiml.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fdiml.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fma.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fma.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fmal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fmal.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fmaxl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fmaxl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fminl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fminl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fmodf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fmodf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/fmodl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/fmodl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/isinf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/isinf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/isnan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/isnan.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j0.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j0f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j0f.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j0l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j0l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j1.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j1f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j1f.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/j1l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/j1l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/jn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/jn.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/jnf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/jnf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/jnl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/jnl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/l2q.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/l2q.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/log2l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/log2l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/logbf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/logbf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/logbl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/logbl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/logl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/logl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/modff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/modff.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/modfl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/modfl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/nan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/nan.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/powl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/powl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/q2l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/q2l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/rintl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/rintl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/sindl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/sindl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/sinhl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/sinhl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/sinl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/sinl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/sqrtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/sqrtl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/tanhl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/tanhl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/tanl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/tanl.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y0.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y0f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y0f.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y0l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y0l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y1.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y1f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y1f.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/y1l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/y1l.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/yn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/yn.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ynf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ynf.S -------------------------------------------------------------------------------- /external/sgx_libm/ia32/ynl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/ia32/ynl.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/j0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/j0.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/j1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/j1.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/jn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/jn.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/y0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/y0.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/y1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/y1.S -------------------------------------------------------------------------------- /external/sgx_libm/intel64/yn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/intel64/yn.S -------------------------------------------------------------------------------- /external/sgx_libm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sgx_libm/makefile -------------------------------------------------------------------------------- /external/sqlite/src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sqlite/src/sqlite3.c -------------------------------------------------------------------------------- /external/sqlite/src/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/sqlite/src/sqlite3.h -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/external/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /linux/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/linux/docker/Dockerfile -------------------------------------------------------------------------------- /linux/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/linux/docker/README.md -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common-dev/libsgx-enclave-common-dev-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common-dev/libsgx-enclave-common-dev-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common-dev/libsgx-enclave-common-dev-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /psw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/Makefile -------------------------------------------------------------------------------- /psw/ae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/Makefile -------------------------------------------------------------------------------- /psw/ae/aesm_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/aesm_service/Makefile -------------------------------------------------------------------------------- /psw/ae/buildenv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/buildenv.mk -------------------------------------------------------------------------------- /psw/ae/common/pek_pub_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/common/pek_pub_key.cpp -------------------------------------------------------------------------------- /psw/ae/common/se_sig_rl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/common/se_sig_rl.cpp -------------------------------------------------------------------------------- /psw/ae/common/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/common/version.cpp -------------------------------------------------------------------------------- /psw/ae/inc/aeerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/aeerror.h -------------------------------------------------------------------------------- /psw/ae/inc/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/byte_order.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/Epid_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/internal/Epid_rl.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/pce_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/internal/pce_cert.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/pse_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/internal/pse_inc.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/ref_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/internal/ref_le.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/internal/utility.h -------------------------------------------------------------------------------- /psw/ae/inc/se_sig_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/inc/se_sig_rl.h -------------------------------------------------------------------------------- /psw/ae/le/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/le/Makefile -------------------------------------------------------------------------------- /psw/ae/le/config_linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/le/config_linux.xml -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/le/launch_enclave.cpp -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/le/launch_enclave.edl -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/le/launch_enclave.h -------------------------------------------------------------------------------- /psw/ae/pce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pce/Makefile -------------------------------------------------------------------------------- /psw/ae/pce/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pce/config.xml -------------------------------------------------------------------------------- /psw/ae/pce/pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pce/pce.cpp -------------------------------------------------------------------------------- /psw/ae/pce/pce.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pce/pce.edl -------------------------------------------------------------------------------- /psw/ae/pce/pce_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pce/pce_helper.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_op/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_op/Makefile -------------------------------------------------------------------------------- /psw/ae/pse/pse_op/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_op/config.xml -------------------------------------------------------------------------------- /psw/ae/pse/pse_op/pse_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_op/pse_op.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_op/pse_op.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_op/pse_op.edl -------------------------------------------------------------------------------- /psw/ae/pse/pse_op/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_op/utility.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/Keys.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/Keys.h -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/Makefile -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/config.xml -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/pse_pr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/pse_pr.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/pse_pr.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/pse_pr.edl -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr/sign_csr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr/sign_csr.cpp -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr_2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr_2/Makefile -------------------------------------------------------------------------------- /psw/ae/pse/pse_pr_2/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pse/pse_pr_2/config.xml -------------------------------------------------------------------------------- /psw/ae/pve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/Makefile -------------------------------------------------------------------------------- /psw/ae/pve/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/cipher.h -------------------------------------------------------------------------------- /psw/ae/pve/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/config.xml -------------------------------------------------------------------------------- /psw/ae/pve/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/helper.cpp -------------------------------------------------------------------------------- /psw/ae/pve/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/helper.h -------------------------------------------------------------------------------- /psw/ae/pve/msg3_parm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/msg3_parm.h -------------------------------------------------------------------------------- /psw/ae/pve/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/protocol.h -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/provision_msg.h -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/provision_msg1.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/provision_msg2.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/provision_msg3.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/provision_msg4.cpp -------------------------------------------------------------------------------- /psw/ae/pve/pve_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/pve/pve_rng.cpp -------------------------------------------------------------------------------- /psw/ae/qe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/qe/Makefile -------------------------------------------------------------------------------- /psw/ae/qe/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/qe/config.xml -------------------------------------------------------------------------------- /psw/ae/qe/quoting_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/qe/quoting_enclave.cpp -------------------------------------------------------------------------------- /psw/ae/qe/quoting_enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/qe/quoting_enclave.edl -------------------------------------------------------------------------------- /psw/ae/ref_le/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/ref_le/Makefile -------------------------------------------------------------------------------- /psw/ae/ref_le/config_linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/ref_le/config_linux.xml -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/ref_le/ref_le.cpp -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/ref_le/ref_le.edl -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/ae/ref_le/ref_le.md -------------------------------------------------------------------------------- /psw/enclave_common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/enclave_common/Makefile -------------------------------------------------------------------------------- /psw/uae_service/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/uae_service/config.h -------------------------------------------------------------------------------- /psw/uae_service/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/uae_service/linux/Makefile -------------------------------------------------------------------------------- /psw/urts/cpu_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/cpu_features.cpp -------------------------------------------------------------------------------- /psw/urts/cpu_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/cpu_features.h -------------------------------------------------------------------------------- /psw/urts/cpu_features_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/cpu_features_ext.cpp -------------------------------------------------------------------------------- /psw/urts/create_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/create_param.h -------------------------------------------------------------------------------- /psw/urts/enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/enclave.cpp -------------------------------------------------------------------------------- /psw/urts/enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/enclave.h -------------------------------------------------------------------------------- /psw/urts/enclave_creator_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/enclave_creator_hw.h -------------------------------------------------------------------------------- /psw/urts/enclave_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/enclave_mutex.cpp -------------------------------------------------------------------------------- /psw/urts/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/file.h -------------------------------------------------------------------------------- /psw/urts/launch_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/launch_checker.cpp -------------------------------------------------------------------------------- /psw/urts/launch_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/launch_checker.h -------------------------------------------------------------------------------- /psw/urts/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/Makefile -------------------------------------------------------------------------------- /psw/urts/linux/edmm_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/edmm_utility.h -------------------------------------------------------------------------------- /psw/urts/linux/enter_enclave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/enter_enclave.S -------------------------------------------------------------------------------- /psw/urts/linux/enter_enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/enter_enclave.h -------------------------------------------------------------------------------- /psw/urts/linux/isgx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/isgx_user.h -------------------------------------------------------------------------------- /psw/urts/linux/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/misc.cpp -------------------------------------------------------------------------------- /psw/urts/linux/read_xcr0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/read_xcr0.h -------------------------------------------------------------------------------- /psw/urts/linux/sig_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/sig_handler.cpp -------------------------------------------------------------------------------- /psw/urts/linux/sig_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/sig_handler.h -------------------------------------------------------------------------------- /psw/urts/linux/urts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts.lds -------------------------------------------------------------------------------- /psw/urts/linux/urts_emodpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts_emodpr.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts_emodpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts_emodpr.h -------------------------------------------------------------------------------- /psw/urts/linux/urts_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts_trim.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts_trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/linux/urts_trim.h -------------------------------------------------------------------------------- /psw/urts/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/loader.cpp -------------------------------------------------------------------------------- /psw/urts/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/loader.h -------------------------------------------------------------------------------- /psw/urts/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/node.cpp -------------------------------------------------------------------------------- /psw/urts/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/node.h -------------------------------------------------------------------------------- /psw/urts/parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/Makefile -------------------------------------------------------------------------------- /psw/urts/parser/binparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/binparser.h -------------------------------------------------------------------------------- /psw/urts/parser/clearvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/clearvars.h -------------------------------------------------------------------------------- /psw/urts/parser/elf32parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/elf32parser.h -------------------------------------------------------------------------------- /psw/urts/parser/elf64parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/elf64parser.h -------------------------------------------------------------------------------- /psw/urts/parser/elfparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/elfparser.cpp -------------------------------------------------------------------------------- /psw/urts/parser/elfparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/elfparser.h -------------------------------------------------------------------------------- /psw/urts/parser/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/section.cpp -------------------------------------------------------------------------------- /psw/urts/parser/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/parser/section.h -------------------------------------------------------------------------------- /psw/urts/prd_css_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/prd_css_util.cpp -------------------------------------------------------------------------------- /psw/urts/prd_css_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/prd_css_util.h -------------------------------------------------------------------------------- /psw/urts/routine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/routine.cpp -------------------------------------------------------------------------------- /psw/urts/se_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/se_detect.cpp -------------------------------------------------------------------------------- /psw/urts/se_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/se_detect.h -------------------------------------------------------------------------------- /psw/urts/se_ocalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/se_ocalls.cpp -------------------------------------------------------------------------------- /psw/urts/section_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/section_info.h -------------------------------------------------------------------------------- /psw/urts/tcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/tcs.cpp -------------------------------------------------------------------------------- /psw/urts/tcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/tcs.h -------------------------------------------------------------------------------- /psw/urts/urts_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/urts_com.h -------------------------------------------------------------------------------- /psw/urts/urts_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/urts_version.cpp -------------------------------------------------------------------------------- /psw/urts/urts_xsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/urts/urts_xsave.cpp -------------------------------------------------------------------------------- /psw/uswitchless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/psw/uswitchless/Makefile -------------------------------------------------------------------------------- /remake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/remake.sh -------------------------------------------------------------------------------- /sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/Makefile -------------------------------------------------------------------------------- /sdk/Makefile.opt_lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/Makefile.opt_lib -------------------------------------------------------------------------------- /sdk/Makefile.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/Makefile.source -------------------------------------------------------------------------------- /sdk/compiler-rt/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/LICENSE.TXT -------------------------------------------------------------------------------- /sdk/compiler-rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/Makefile -------------------------------------------------------------------------------- /sdk/compiler-rt/addtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/addtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ashldi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashlti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ashlti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ashrdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ashrti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clear_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/clear_cache.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/clzdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/clzsi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/clzti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/cmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/cmpdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/cmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/cmpti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/comparetf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/comparetf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ctzdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ctzsi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ctzti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/divdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/divsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/divtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/divti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/extenddftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/extenddftf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/extendsftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/extendsftf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ffsdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ffsdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ffsti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ffsti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/fixtfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/fixtfsi.c -------------------------------------------------------------------------------- /sdk/compiler-rt/floatsitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/floatsitf.c -------------------------------------------------------------------------------- /sdk/compiler-rt/floatunsitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/floatunsitf.c -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/fp_extend.h -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/fp_lib.h -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/fp_trunc.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/int_lib.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/int_types.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/int_util.h -------------------------------------------------------------------------------- /sdk/compiler-rt/lshrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/lshrdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/lshrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/lshrti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/moddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/moddi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/modsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/modsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/modti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/modti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/muldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/muldi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/multf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/multf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/multi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/multi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/negdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/negdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/negti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/negti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/paritydi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/paritydi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/paritysi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/paritysi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/parityti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/parityti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/popcountdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/popcountdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/popcountsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/popcountsi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/popcountti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/popcountti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/stack_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/stack_chk.c -------------------------------------------------------------------------------- /sdk/compiler-rt/subtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/subtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/trunctfdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/trunctfdf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/trunctfsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/trunctfsf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ucmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ucmpdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ucmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/ucmpti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/udivdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivmoddi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/udivmoddi4.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivmodti4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/udivmodti4.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/udivsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/udivti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umoddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/umoddi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umodsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/umodsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umodti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/compiler-rt/umodti3.c -------------------------------------------------------------------------------- /sdk/cpprt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/Makefile -------------------------------------------------------------------------------- /sdk/cpprt/linux/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/atomic.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/auxhelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/auxhelper.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/cxxabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/cxxabi.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/dwarf_eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/dwarf_eh.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/exception.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/guard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/guard.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/libunwind/NEWS -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/libunwind/TODO -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/doc/unw_init_local2.man: -------------------------------------------------------------------------------- 1 | .so man3/unw_init_local.3 2 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/src/ia64/mk_Lcursor_i.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "mk_Gcursor_i.c" 3 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/tests/run-ptrace-mapper: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test-ptrace -c -n -t ./mapper $* 3 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/stdexcept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/stdexcept.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/terminate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/terminate.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/typeinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/typeinfo.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/typeinfo.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/unwind-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/unwind-arm.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/linux/unwind.h -------------------------------------------------------------------------------- /sdk/cpprt/tcxx_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/cpprt/tcxx_version.cpp -------------------------------------------------------------------------------- /sdk/ec_dh_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/ec_dh_lib/Makefile -------------------------------------------------------------------------------- /sdk/ec_dh_lib/ec_dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/ec_dh_lib/ec_dh.cpp -------------------------------------------------------------------------------- /sdk/edger8r/linux/Ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Ast.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/CodeGen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/CodeGen.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/Edger8r.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Edger8r.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/Lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Lexer.mll -------------------------------------------------------------------------------- /sdk/edger8r/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Makefile -------------------------------------------------------------------------------- /sdk/edger8r/linux/Parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Parser.mly -------------------------------------------------------------------------------- /sdk/edger8r/linux/Plugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Plugin.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/Util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/edger8r/linux/Util.ml -------------------------------------------------------------------------------- /sdk/encrypt_enclave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/encrypt_enclave/Makefile -------------------------------------------------------------------------------- /sdk/gperftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/gperftools/Makefile -------------------------------------------------------------------------------- /sdk/gperftools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/gperftools/README -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/libgperftools0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/bin 3 | -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/libgperftools0.manpages: -------------------------------------------------------------------------------- 1 | docs/pprof.1 2 | -------------------------------------------------------------------------------- /sdk/libcapable/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/libcapable/linux/Makefile -------------------------------------------------------------------------------- /sdk/mage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/mage/Makefile -------------------------------------------------------------------------------- /sdk/mage/sgx_mage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/mage/sgx_mage.cpp -------------------------------------------------------------------------------- /sdk/sample_libcrypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/sample_libcrypto/Makefile -------------------------------------------------------------------------------- /sdk/selib/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/selib/linux/Makefile -------------------------------------------------------------------------------- /sdk/selib/sgx_get_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/selib/sgx_get_key.cpp -------------------------------------------------------------------------------- /sdk/selib/tservice_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/selib/tservice_version.cpp -------------------------------------------------------------------------------- /sdk/simulation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/Makefile -------------------------------------------------------------------------------- /sdk/simulation/tinst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/tinst/Makefile -------------------------------------------------------------------------------- /sdk/simulation/tinst/deriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/tinst/deriv.cpp -------------------------------------------------------------------------------- /sdk/simulation/tinst/deriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/tinst/deriv.h -------------------------------------------------------------------------------- /sdk/simulation/tinst/rts_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/tinst/rts_sim.h -------------------------------------------------------------------------------- /sdk/simulation/uinst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/uinst/Makefile -------------------------------------------------------------------------------- /sdk/simulation/uinst/td_mngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/simulation/uinst/td_mngr.h -------------------------------------------------------------------------------- /sdk/switchless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/Makefile -------------------------------------------------------------------------------- /sdk/switchless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/README.md -------------------------------------------------------------------------------- /sdk/switchless/src/sl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/src/sl_init.c -------------------------------------------------------------------------------- /sdk/switchless/src/sl_memlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/src/sl_memlog.c -------------------------------------------------------------------------------- /sdk/switchless/src/sl_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/src/sl_once.c -------------------------------------------------------------------------------- /sdk/switchless/src/sl_printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/switchless/src/sl_printk.c -------------------------------------------------------------------------------- /sdk/tae_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tae_service/Makefile -------------------------------------------------------------------------------- /sdk/tae_service/tae_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tae_service/tae_config.h -------------------------------------------------------------------------------- /sdk/tkey_exchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tkey_exchange/Makefile -------------------------------------------------------------------------------- /sdk/tlibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/Makefile -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/arith.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/dmisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/dtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gd_qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gd_qnan.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gethex.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/gmisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/hd_init.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/hdtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/hexnan.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/ldtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/ldtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/locks.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/misc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/smisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtod.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtodg.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtof.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtold.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtord.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/strtorx.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/sum.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gdtoa/ulp.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/__memcpy_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__memcpy_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/__memset_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__memset_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/__stpcpy_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__stpcpy_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/__strcat_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__strcat_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/__strcpy_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__strcpy_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/__strlen_chk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/__strlen_chk.cpp -------------------------------------------------------------------------------- /sdk/tlibc/gen/alloca.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/alloca.S -------------------------------------------------------------------------------- /sdk/tlibc/gen/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/assert.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/ctype_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/ctype_.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/ctype_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/ctype_private.h -------------------------------------------------------------------------------- /sdk/tlibc/gen/errlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/errlist.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/errno.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/infinity.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/isctype.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/nan.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/sbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/se_cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/se_cpuid.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/spinlock.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/tolower_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/tolower_.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/toupper_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/gen/toupper_.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/btowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/btowc.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mblen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/mblen.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/mbrlen.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbstowcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/mbstowcs.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/mbtowc.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/runetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/runetype.h -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcscoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/wcscoll.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcstombs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/wcstombs.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcsxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/wcsxfrm.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wctob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/wctob.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wctomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/locale/wctomb.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_drem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_drem.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_dremf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_dremf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_dreml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_dreml.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_pow10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_pow10.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_pow10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_pow10f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_pow10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/math/w_pow10l.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fileext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/fileext.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/floatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/floatio.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fvwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/fvwrite.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fvwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/fvwrite.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/local.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/snprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/swprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/swprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/vfprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vfwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/vfwprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/vsnprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vswprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/vswprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/wcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdio/wcio.h -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/abs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/atof.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/atoi.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/atol.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/atoll.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/bsearch.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/div.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/imaxabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/imaxabs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/imaxdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/imaxdiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/labs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/ldiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/llabs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/lldiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/malloc.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/qsort.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtoimax.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtol.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtoll.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtoul.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtoull.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/stdlib/strtoumax.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/bcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/bcopy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/bzero.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/ffs.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/ffsl.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/ffsll.c -------------------------------------------------------------------------------- /sdk/tlibc/string/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/index.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memmove.c -------------------------------------------------------------------------------- /sdk/tlibc/string/mempcpy.c: -------------------------------------------------------------------------------- 1 | #define MEMPCPY 2 | #include "./bcopy.c" 3 | -------------------------------------------------------------------------------- /sdk/tlibc/string/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memset.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memset_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/memset_s.c -------------------------------------------------------------------------------- /sdk/tlibc/string/rindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/rindex.c -------------------------------------------------------------------------------- /sdk/tlibc/string/stpncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/stpncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strcasecmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strcoll.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strcspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strerror.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strerror_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strerror_r.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strlcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strlen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strncat.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strncmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strndup.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strnlen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strpbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strrchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strstr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strtok.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/strxfrm.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcschr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcschr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcscmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcscspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcscspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcslcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcslcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcslen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcslen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsncat.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsncmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcspbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcspbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsrchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcsstr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcstok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcstok.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcswcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wcswcs.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wmemchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wmemcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wmemcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wmemmove.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/string/wmemset.c -------------------------------------------------------------------------------- /sdk/tlibc/time/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/time/asctime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/difftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/time/difftime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/time/private.h -------------------------------------------------------------------------------- /sdk/tlibc/time/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/time/strftime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/time/tzfile.h -------------------------------------------------------------------------------- /sdk/tlibc/tstdc_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibc/tstdc_version.cpp -------------------------------------------------------------------------------- /sdk/tlibcrypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcrypto/Makefile -------------------------------------------------------------------------------- /sdk/tlibcxx/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/LICENSE.TXT -------------------------------------------------------------------------------- /sdk/tlibcxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/Makefile -------------------------------------------------------------------------------- /sdk/tlibcxx/README.sgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/README.sgx -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__config -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__debug -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__locale -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__nullptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__nullptr -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__sgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__sgx -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__tree -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/__tuple -------------------------------------------------------------------------------- /sdk/tlibcxx/include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/algorithm -------------------------------------------------------------------------------- /sdk/tlibcxx/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/array -------------------------------------------------------------------------------- /sdk/tlibcxx/include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/atomic -------------------------------------------------------------------------------- /sdk/tlibcxx/include/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/bitset -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cassert -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ccomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ccomplex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cctype -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cerrno -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cfenv -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cfloat -------------------------------------------------------------------------------- /sdk/tlibcxx/include/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/chrono -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cinttypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cinttypes -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ciso646 -------------------------------------------------------------------------------- /sdk/tlibcxx/include/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/climits -------------------------------------------------------------------------------- /sdk/tlibcxx/include/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/clocale -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cmath -------------------------------------------------------------------------------- /sdk/tlibcxx/include/codecvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/codecvt -------------------------------------------------------------------------------- /sdk/tlibcxx/include/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/complex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/complex.h -------------------------------------------------------------------------------- /sdk/tlibcxx/include/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/csetjmp -------------------------------------------------------------------------------- /sdk/tlibcxx/include/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/csignal -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstdarg -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdbool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstdbool -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstddef -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstdint -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstdio -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstdlib -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cstring -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ctgmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ctgmath -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ctime -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cwchar -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/cwctype -------------------------------------------------------------------------------- /sdk/tlibcxx/include/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/deque -------------------------------------------------------------------------------- /sdk/tlibcxx/include/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/exception -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ext/__hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ext/__hash -------------------------------------------------------------------------------- /sdk/tlibcxx/include/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/fstream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/functional -------------------------------------------------------------------------------- /sdk/tlibcxx/include/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/future -------------------------------------------------------------------------------- /sdk/tlibcxx/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/inttypes.h -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/iomanip -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ios -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/iosfwd -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/iostream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/istream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/iterator -------------------------------------------------------------------------------- /sdk/tlibcxx/include/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/limits -------------------------------------------------------------------------------- /sdk/tlibcxx/include/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/list -------------------------------------------------------------------------------- /sdk/tlibcxx/include/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/locale -------------------------------------------------------------------------------- /sdk/tlibcxx/include/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/map -------------------------------------------------------------------------------- /sdk/tlibcxx/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/memory -------------------------------------------------------------------------------- /sdk/tlibcxx/include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/mutex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/new -------------------------------------------------------------------------------- /sdk/tlibcxx/include/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/numeric -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ostream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/queue -------------------------------------------------------------------------------- /sdk/tlibcxx/include/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/random -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/ratio -------------------------------------------------------------------------------- /sdk/tlibcxx/include/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/regex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/set -------------------------------------------------------------------------------- /sdk/tlibcxx/include/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/sstream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/stack -------------------------------------------------------------------------------- /sdk/tlibcxx/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/stdbool.h -------------------------------------------------------------------------------- /sdk/tlibcxx/include/stdexcept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/stdexcept -------------------------------------------------------------------------------- /sdk/tlibcxx/include/streambuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/streambuf -------------------------------------------------------------------------------- /sdk/tlibcxx/include/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/string -------------------------------------------------------------------------------- /sdk/tlibcxx/include/strstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/strstream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/support/xlocale/xlocale.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/tlibcxx/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/tgmath.h -------------------------------------------------------------------------------- /sdk/tlibcxx/include/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/thread -------------------------------------------------------------------------------- /sdk/tlibcxx/include/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/tuple -------------------------------------------------------------------------------- /sdk/tlibcxx/include/typeindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/typeindex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/typeinfo -------------------------------------------------------------------------------- /sdk/tlibcxx/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/utility -------------------------------------------------------------------------------- /sdk/tlibcxx/include/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/valarray -------------------------------------------------------------------------------- /sdk/tlibcxx/include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/include/vector -------------------------------------------------------------------------------- /sdk/tlibcxx/src/algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/algorithm.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/any.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/bind.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/chrono.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/debug.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/exception.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/future.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/hash.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/ios.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/iostream.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/locale.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/memory.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/mutex.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/new.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/optional.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/random.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/regex.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/sgx_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/sgx_mutex.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/stdexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/stdexcept.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/string.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/strstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/strstream.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/thread.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/typeinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/typeinfo.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/utility.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/valarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibcxx/src/valarray.cpp -------------------------------------------------------------------------------- /sdk/tlibthread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tlibthread/Makefile -------------------------------------------------------------------------------- /sdk/trts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/Makefile -------------------------------------------------------------------------------- /sdk/trts/init_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/init_enclave.cpp -------------------------------------------------------------------------------- /sdk/trts/init_optimized_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/init_optimized_lib.h -------------------------------------------------------------------------------- /sdk/trts/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/Makefile -------------------------------------------------------------------------------- /sdk/trts/linux/elf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/elf_parser.c -------------------------------------------------------------------------------- /sdk/trts/linux/elf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/elf_parser.h -------------------------------------------------------------------------------- /sdk/trts/linux/global_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/global_init.c -------------------------------------------------------------------------------- /sdk/trts/linux/metadata_sec.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/metadata_sec.S -------------------------------------------------------------------------------- /sdk/trts/linux/tls_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/tls_support.c -------------------------------------------------------------------------------- /sdk/trts/linux/trts_pic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/trts_pic.S -------------------------------------------------------------------------------- /sdk/trts/linux/trts_pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/linux/trts_pic.h -------------------------------------------------------------------------------- /sdk/trts/trts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_add_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_add_trim.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_ecall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_ecall.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_emodpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_emodpr.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_emodpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_emodpr.h -------------------------------------------------------------------------------- /sdk/trts/trts_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_internal.h -------------------------------------------------------------------------------- /sdk/trts/trts_nsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_nsp.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_ocall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_ocall.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_switchless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_switchless.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_trim.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_trim.h -------------------------------------------------------------------------------- /sdk/trts/trts_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_util.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_util.h -------------------------------------------------------------------------------- /sdk/trts/trts_veh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_veh.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_version.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_xsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/trts/trts_xsave.cpp -------------------------------------------------------------------------------- /sdk/tsafecrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tsafecrt/Makefile -------------------------------------------------------------------------------- /sdk/tseal/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/linux/Makefile -------------------------------------------------------------------------------- /sdk/tseal/tSeal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/tSeal.cpp -------------------------------------------------------------------------------- /sdk/tseal/tSeal_aad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/tSeal_aad.cpp -------------------------------------------------------------------------------- /sdk/tseal/tSeal_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/tSeal_internal.cpp -------------------------------------------------------------------------------- /sdk/tseal/tSeal_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/tSeal_internal.h -------------------------------------------------------------------------------- /sdk/tseal/tSeal_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tseal/tSeal_util.cpp -------------------------------------------------------------------------------- /sdk/tsetjmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tsetjmp/Makefile -------------------------------------------------------------------------------- /sdk/tsetjmp/_setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/tsetjmp/_setjmp.S -------------------------------------------------------------------------------- /sdk/ukey_exchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnod/linux-sgx-mage/HEAD/sdk/ukey_exchange/Makefile --------------------------------------------------------------------------------