├── .gitignore ├── README.md ├── include └── common.h ├── pass ├── Makefile └── sgxbounds.cpp └── runtime ├── runtime.c ├── uthash.h └── wrappers.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/README.md -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/include/common.h -------------------------------------------------------------------------------- /pass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/pass/Makefile -------------------------------------------------------------------------------- /pass/sgxbounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/pass/sgxbounds.cpp -------------------------------------------------------------------------------- /runtime/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/runtime/runtime.c -------------------------------------------------------------------------------- /runtime/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/runtime/uthash.h -------------------------------------------------------------------------------- /runtime/wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tudinfse/sgxbounds/HEAD/runtime/wrappers.c --------------------------------------------------------------------------------