├── .gitignore ├── README.md ├── System_Security.sln ├── System_Security_Normal ├── GetOpt.cpp ├── GetOpt.h ├── System_Security_Normal.cpp ├── System_Security_Normal.vcxproj ├── System_Security_Normal.vcxproj.filters ├── pch.cpp └── pch.h └── System_Security_Trusted ├── System_Security_Trusted.config.xml ├── System_Security_Trusted.cpp ├── System_Security_Trusted.edl ├── System_Security_Trusted.vcxproj ├── System_Security_Trusted.vcxproj.filters └── System_Security_Trusted_private.pem /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/README.md -------------------------------------------------------------------------------- /System_Security.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security.sln -------------------------------------------------------------------------------- /System_Security_Normal/GetOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/GetOpt.cpp -------------------------------------------------------------------------------- /System_Security_Normal/GetOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/GetOpt.h -------------------------------------------------------------------------------- /System_Security_Normal/System_Security_Normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/System_Security_Normal.cpp -------------------------------------------------------------------------------- /System_Security_Normal/System_Security_Normal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/System_Security_Normal.vcxproj -------------------------------------------------------------------------------- /System_Security_Normal/System_Security_Normal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/System_Security_Normal.vcxproj.filters -------------------------------------------------------------------------------- /System_Security_Normal/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/pch.cpp -------------------------------------------------------------------------------- /System_Security_Normal/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Normal/pch.h -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted.config.xml -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted.cpp -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted.edl -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted.vcxproj -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted.vcxproj.filters -------------------------------------------------------------------------------- /System_Security_Trusted/System_Security_Trusted_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3ai-lab/Intel-SGX-Crypto-Demo/HEAD/System_Security_Trusted/System_Security_Trusted_private.pem --------------------------------------------------------------------------------