├── .config └── servicetreeconfig.json ├── .github ├── actions │ └── actionAzVmRunCommand │ │ └── action.yml ├── windowsScripts │ ├── DCAPBuildMain.ps1 │ ├── DCAPCloneMain.ps1 │ └── DCAPUnitTestsMain.ps1 └── workflows │ ├── buildPipeline.yml │ ├── codeql.yml │ └── scripts │ ├── buildcode.cmd │ └── install_prereqs.cmd ├── .gitignore ├── .jenkins ├── Dockerfile ├── Jenkinsfile ├── JenkinsfileTestLinuxRelease ├── build_docker_images.Jenkinsfile └── src │ └── Dcap.groovy ├── .pipelines ├── build.cmd ├── buildLinux.cmd ├── pipeline.user.linux.all_buildtype.all_tag.Ubuntu1604.yml ├── pipeline.user.linux.all_buildtype.all_tag.Ubuntu1804.yml ├── pipeline.user.linux.yml ├── pipeline.user.windows.all_buildtype.all_tag.Windows2016.yml ├── pipeline.user.windows.all_buildtype.all_tag.Windows2019.yml ├── pipeline.user.windows.yml └── pipeline.user.yml ├── LICENSE ├── README.md ├── SECURITY.md └── src ├── .clang-format ├── Linux ├── CMakeLists.txt ├── Makefile.in ├── README.MD ├── configure ├── curl_easy.cpp ├── curl_easy.h ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ └── rules ├── init.cpp └── local_cache.cpp ├── UnitTest ├── main.cpp ├── test_local_cache.cpp └── test_quote_prov.cpp ├── UnitTestMap.xml ├── UnitTestsJobGroup.Xml ├── Windows ├── .gitignore ├── AzureDCAPSetupProject │ ├── AzureDCAPSetupProject.wixproj │ ├── License.rtf │ ├── Product.wxs │ └── WixUIExtension.dll ├── GeneratePackage │ ├── Azure.DCAP.Windows.nuspec │ ├── InstallAzureDCAP.ps1 │ ├── NOTICE.txt │ └── README.txt ├── README.MD ├── UnitTests │ ├── UnitTests.vcxproj │ └── packages.config ├── curl_easy.cpp ├── curl_easy.h ├── dcap_provider.sln ├── dcap_provider_tests │ ├── dcap_provider_tests.vcxproj │ ├── easy_curl_tests.cpp │ ├── packages.config │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── dll │ ├── build.ps1 │ ├── dcap_provider.def │ ├── dcap_provider.nuspec │ ├── dcap_provider.rc │ ├── dcap_provider.vcxproj │ ├── dllmain.cpp │ ├── event_log.h │ ├── evtx_logging.cpp │ ├── evtx_logging.h │ ├── nuget.config │ ├── packages.config │ ├── resource.h │ └── resources │ │ ├── event_log.mc │ │ ├── event_log.res │ │ ├── event_log_MSG00000.bin │ │ └── resource.h ├── get-prereqs.ps1 └── local_cache.cpp ├── dcap_provider.cpp ├── dcap_provider.h ├── environment.h ├── local_cache.h ├── logging.cpp ├── private.h └── sgx_ql_lib_common.h /.config/servicetreeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.config/servicetreeconfig.json -------------------------------------------------------------------------------- /.github/actions/actionAzVmRunCommand/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/actions/actionAzVmRunCommand/action.yml -------------------------------------------------------------------------------- /.github/windowsScripts/DCAPBuildMain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/windowsScripts/DCAPBuildMain.ps1 -------------------------------------------------------------------------------- /.github/windowsScripts/DCAPCloneMain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/windowsScripts/DCAPCloneMain.ps1 -------------------------------------------------------------------------------- /.github/windowsScripts/DCAPUnitTestsMain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/windowsScripts/DCAPUnitTestsMain.ps1 -------------------------------------------------------------------------------- /.github/workflows/buildPipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/workflows/buildPipeline.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/buildcode.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/workflows/scripts/buildcode.cmd -------------------------------------------------------------------------------- /.github/workflows/scripts/install_prereqs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.github/workflows/scripts/install_prereqs.cmd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.jenkins/Dockerfile -------------------------------------------------------------------------------- /.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.jenkins/Jenkinsfile -------------------------------------------------------------------------------- /.jenkins/JenkinsfileTestLinuxRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.jenkins/JenkinsfileTestLinuxRelease -------------------------------------------------------------------------------- /.jenkins/build_docker_images.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.jenkins/build_docker_images.Jenkinsfile -------------------------------------------------------------------------------- /.jenkins/src/Dcap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.jenkins/src/Dcap.groovy -------------------------------------------------------------------------------- /.pipelines/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/build.cmd -------------------------------------------------------------------------------- /.pipelines/buildLinux.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/buildLinux.cmd -------------------------------------------------------------------------------- /.pipelines/pipeline.user.linux.all_buildtype.all_tag.Ubuntu1604.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.linux.all_buildtype.all_tag.Ubuntu1604.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.linux.all_buildtype.all_tag.Ubuntu1804.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.linux.all_buildtype.all_tag.Ubuntu1804.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.linux.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.all_buildtype.all_tag.Windows2016.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.windows.all_buildtype.all_tag.Windows2016.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.all_buildtype.all_tag.Windows2019.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.windows.all_buildtype.all_tag.Windows2019.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.windows.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/.pipelines/pipeline.user.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/Linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/CMakeLists.txt -------------------------------------------------------------------------------- /src/Linux/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/Makefile.in -------------------------------------------------------------------------------- /src/Linux/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/README.MD -------------------------------------------------------------------------------- /src/Linux/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/configure -------------------------------------------------------------------------------- /src/Linux/curl_easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/curl_easy.cpp -------------------------------------------------------------------------------- /src/Linux/curl_easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/curl_easy.h -------------------------------------------------------------------------------- /src/Linux/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/debian/changelog -------------------------------------------------------------------------------- /src/Linux/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /src/Linux/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/debian/control -------------------------------------------------------------------------------- /src/Linux/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/debian/copyright -------------------------------------------------------------------------------- /src/Linux/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/debian/rules -------------------------------------------------------------------------------- /src/Linux/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/init.cpp -------------------------------------------------------------------------------- /src/Linux/local_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Linux/local_cache.cpp -------------------------------------------------------------------------------- /src/UnitTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/UnitTest/main.cpp -------------------------------------------------------------------------------- /src/UnitTest/test_local_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/UnitTest/test_local_cache.cpp -------------------------------------------------------------------------------- /src/UnitTest/test_quote_prov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/UnitTest/test_quote_prov.cpp -------------------------------------------------------------------------------- /src/UnitTestMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/UnitTestMap.xml -------------------------------------------------------------------------------- /src/UnitTestsJobGroup.Xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/UnitTestsJobGroup.Xml -------------------------------------------------------------------------------- /src/Windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/.gitignore -------------------------------------------------------------------------------- /src/Windows/AzureDCAPSetupProject/AzureDCAPSetupProject.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/AzureDCAPSetupProject/AzureDCAPSetupProject.wixproj -------------------------------------------------------------------------------- /src/Windows/AzureDCAPSetupProject/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/AzureDCAPSetupProject/License.rtf -------------------------------------------------------------------------------- /src/Windows/AzureDCAPSetupProject/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/AzureDCAPSetupProject/Product.wxs -------------------------------------------------------------------------------- /src/Windows/AzureDCAPSetupProject/WixUIExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/AzureDCAPSetupProject/WixUIExtension.dll -------------------------------------------------------------------------------- /src/Windows/GeneratePackage/Azure.DCAP.Windows.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/GeneratePackage/Azure.DCAP.Windows.nuspec -------------------------------------------------------------------------------- /src/Windows/GeneratePackage/InstallAzureDCAP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/GeneratePackage/InstallAzureDCAP.ps1 -------------------------------------------------------------------------------- /src/Windows/GeneratePackage/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/GeneratePackage/NOTICE.txt -------------------------------------------------------------------------------- /src/Windows/GeneratePackage/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/GeneratePackage/README.txt -------------------------------------------------------------------------------- /src/Windows/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/README.MD -------------------------------------------------------------------------------- /src/Windows/UnitTests/UnitTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/UnitTests/UnitTests.vcxproj -------------------------------------------------------------------------------- /src/Windows/UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/UnitTests/packages.config -------------------------------------------------------------------------------- /src/Windows/curl_easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/curl_easy.cpp -------------------------------------------------------------------------------- /src/Windows/curl_easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/curl_easy.h -------------------------------------------------------------------------------- /src/Windows/dcap_provider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider.sln -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/dcap_provider_tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/dcap_provider_tests.vcxproj -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/easy_curl_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/easy_curl_tests.cpp -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/packages.config -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/stdafx.cpp -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/stdafx.h -------------------------------------------------------------------------------- /src/Windows/dcap_provider_tests/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dcap_provider_tests/targetver.h -------------------------------------------------------------------------------- /src/Windows/dll/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/build.ps1 -------------------------------------------------------------------------------- /src/Windows/dll/dcap_provider.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/dcap_provider.def -------------------------------------------------------------------------------- /src/Windows/dll/dcap_provider.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/dcap_provider.nuspec -------------------------------------------------------------------------------- /src/Windows/dll/dcap_provider.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/dcap_provider.rc -------------------------------------------------------------------------------- /src/Windows/dll/dcap_provider.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/dcap_provider.vcxproj -------------------------------------------------------------------------------- /src/Windows/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/Windows/dll/event_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/event_log.h -------------------------------------------------------------------------------- /src/Windows/dll/evtx_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/evtx_logging.cpp -------------------------------------------------------------------------------- /src/Windows/dll/evtx_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/evtx_logging.h -------------------------------------------------------------------------------- /src/Windows/dll/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/nuget.config -------------------------------------------------------------------------------- /src/Windows/dll/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/packages.config -------------------------------------------------------------------------------- /src/Windows/dll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/resource.h -------------------------------------------------------------------------------- /src/Windows/dll/resources/event_log.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/resources/event_log.mc -------------------------------------------------------------------------------- /src/Windows/dll/resources/event_log.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/resources/event_log.res -------------------------------------------------------------------------------- /src/Windows/dll/resources/event_log_MSG00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/resources/event_log_MSG00000.bin -------------------------------------------------------------------------------- /src/Windows/dll/resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/dll/resources/resource.h -------------------------------------------------------------------------------- /src/Windows/get-prereqs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/get-prereqs.ps1 -------------------------------------------------------------------------------- /src/Windows/local_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/Windows/local_cache.cpp -------------------------------------------------------------------------------- /src/dcap_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/dcap_provider.cpp -------------------------------------------------------------------------------- /src/dcap_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/dcap_provider.h -------------------------------------------------------------------------------- /src/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/environment.h -------------------------------------------------------------------------------- /src/local_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/local_cache.h -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/private.h -------------------------------------------------------------------------------- /src/sgx_ql_lib_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-DCAP-Client/HEAD/src/sgx_ql_lib_common.h --------------------------------------------------------------------------------