├── LICENSE ├── README.md ├── cachezoom.h ├── client ├── Makefile ├── cachezoom ├── cachezoom_client.c └── cachezoom_client.o ├── configure_os.sh ├── data ├── analysis.m ├── convert.py ├── data.csv └── simple_analysis.py ├── kernel ├── .cachezoom_kernel.ko.cmd ├── .cachezoom_kernel.mod.o.cmd ├── .cachezoom_kernel.o.cmd ├── .tmp_versions │ └── cachezoom_kernel.mod ├── Makefile ├── Module.symvers ├── cachezoom_kernel.c ├── cachezoom_kernel.h ├── cachezoom_kernel.ko ├── cachezoom_kernel.mod.c ├── cachezoom_kernel.mod.o ├── cachezoom_kernel.o ├── modules.order └── output.txt ├── keyrecovery ├── 4_t_order_stat.py ├── analysis.py ├── analysis_sbox_last_round.py ├── data │ ├── last_round.txt │ ├── multiple.txt │ ├── multiple.txt_trace │ ├── multiple_order.txt │ └── some_result_order_big_t.txt ├── extracted.csv ├── find_the_key.py ├── find_the_key.py.bak ├── find_the_key2.py ├── find_the_key3.py ├── find_the_key4.py ├── find_the_key_last_round.py ├── find_the_key_last_round_unordered.py ├── gen_test_pattern.py ├── gen_test_pattern_large_t.py ├── gen_test_pattern_sbox.py ├── key_eq.py ├── key_eq2.py ├── key_eq3.py ├── key_eq_1table.py ├── key_eq_1table_first_round.py ├── key_eq_1table_first_round_stat.py ├── key_eq_4table_first_round.py ├── key_eq_4table_first_round_stat.py ├── key_eq_last_round.py ├── large_t_order_stat.py ├── output.txt ├── plot.py ├── rand_access_gen.py ├── tesss.py ├── test.py ├── test_part.csv └── try.py ├── restart.sh └── target ├── TestEnclave ├── .cproject ├── .project ├── App │ ├── App.cpp │ ├── App.cpp~ │ ├── App.h │ ├── App.o │ ├── Edger8rSyntax │ │ ├── Arrays.cpp │ │ ├── Arrays.o │ │ ├── Functions.cpp │ │ ├── Functions.o │ │ ├── Pointers.cpp │ │ ├── Pointers.o │ │ ├── Types.cpp │ │ └── Types.o │ ├── Enclave_u.c │ ├── Enclave_u.h │ ├── Enclave_u.o │ ├── debug.h │ ├── multiple.txt_bak │ └── multiple.txt_bak~ ├── Enclave │ ├── Edger8rSyntax │ │ ├── Arrays.cpp │ │ ├── Arrays.edl │ │ ├── Arrays.o │ │ ├── Functions.cpp │ │ ├── Functions.edl │ │ ├── Functions.o │ │ ├── Pointers.cpp │ │ ├── Pointers.edl │ │ ├── Pointers.o │ │ ├── Types.cpp │ │ ├── Types.edl │ │ └── Types.o │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.cpp~ │ ├── Enclave.edl │ ├── Enclave.edl~ │ ├── Enclave.h │ ├── Enclave.lds │ ├── Enclave.o │ ├── Enclave_private.pem │ ├── Enclave_t.c │ ├── Enclave_t.h │ ├── Enclave_t.o │ ├── aes.h~ │ ├── aes_locl.h~ │ └── rand_access_gen.py~ ├── Include │ └── user_types.h ├── Makefile ├── MyPinTool │ ├── MyPinTool.cpp │ ├── MyPinTool.cpp~ │ ├── makefile │ ├── makefile.rules │ ├── obj-intel64 │ │ └── MyPinTool.so │ ├── output.txt │ ├── output.txt~ │ └── pin.log ├── README.txt ├── app ├── enclave.signed.so ├── enclave.so └── make.sh └── enclave.signed.so /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CacheZoom -------------------------------------------------------------------------------- /cachezoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/cachezoom.h -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/cachezoom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/client/cachezoom -------------------------------------------------------------------------------- /client/cachezoom_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/client/cachezoom_client.c -------------------------------------------------------------------------------- /client/cachezoom_client.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/client/cachezoom_client.o -------------------------------------------------------------------------------- /configure_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/configure_os.sh -------------------------------------------------------------------------------- /data/analysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/data/analysis.m -------------------------------------------------------------------------------- /data/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/data/convert.py -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/data/data.csv -------------------------------------------------------------------------------- /data/simple_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/data/simple_analysis.py -------------------------------------------------------------------------------- /kernel/.cachezoom_kernel.ko.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/.cachezoom_kernel.ko.cmd -------------------------------------------------------------------------------- /kernel/.cachezoom_kernel.mod.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/.cachezoom_kernel.mod.o.cmd -------------------------------------------------------------------------------- /kernel/.cachezoom_kernel.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/.cachezoom_kernel.o.cmd -------------------------------------------------------------------------------- /kernel/.tmp_versions/cachezoom_kernel.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/.tmp_versions/cachezoom_kernel.mod -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/Module.symvers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.c -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.h -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.ko -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.mod.c -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.mod.o -------------------------------------------------------------------------------- /kernel/cachezoom_kernel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/cachezoom_kernel.o -------------------------------------------------------------------------------- /kernel/modules.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/modules.order -------------------------------------------------------------------------------- /kernel/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/kernel/output.txt -------------------------------------------------------------------------------- /keyrecovery/4_t_order_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/4_t_order_stat.py -------------------------------------------------------------------------------- /keyrecovery/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/analysis.py -------------------------------------------------------------------------------- /keyrecovery/analysis_sbox_last_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/analysis_sbox_last_round.py -------------------------------------------------------------------------------- /keyrecovery/data/last_round.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/data/last_round.txt -------------------------------------------------------------------------------- /keyrecovery/data/multiple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/data/multiple.txt -------------------------------------------------------------------------------- /keyrecovery/data/multiple.txt_trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/data/multiple.txt_trace -------------------------------------------------------------------------------- /keyrecovery/data/multiple_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/data/multiple_order.txt -------------------------------------------------------------------------------- /keyrecovery/data/some_result_order_big_t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/data/some_result_order_big_t.txt -------------------------------------------------------------------------------- /keyrecovery/extracted.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keyrecovery/find_the_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key.py -------------------------------------------------------------------------------- /keyrecovery/find_the_key.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key.py.bak -------------------------------------------------------------------------------- /keyrecovery/find_the_key2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key2.py -------------------------------------------------------------------------------- /keyrecovery/find_the_key3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key3.py -------------------------------------------------------------------------------- /keyrecovery/find_the_key4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key4.py -------------------------------------------------------------------------------- /keyrecovery/find_the_key_last_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key_last_round.py -------------------------------------------------------------------------------- /keyrecovery/find_the_key_last_round_unordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/find_the_key_last_round_unordered.py -------------------------------------------------------------------------------- /keyrecovery/gen_test_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/gen_test_pattern.py -------------------------------------------------------------------------------- /keyrecovery/gen_test_pattern_large_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/gen_test_pattern_large_t.py -------------------------------------------------------------------------------- /keyrecovery/gen_test_pattern_sbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/gen_test_pattern_sbox.py -------------------------------------------------------------------------------- /keyrecovery/key_eq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq.py -------------------------------------------------------------------------------- /keyrecovery/key_eq2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq2.py -------------------------------------------------------------------------------- /keyrecovery/key_eq3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq3.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_1table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_1table.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_1table_first_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_1table_first_round.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_1table_first_round_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_1table_first_round_stat.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_4table_first_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_4table_first_round.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_4table_first_round_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_4table_first_round_stat.py -------------------------------------------------------------------------------- /keyrecovery/key_eq_last_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/key_eq_last_round.py -------------------------------------------------------------------------------- /keyrecovery/large_t_order_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/large_t_order_stat.py -------------------------------------------------------------------------------- /keyrecovery/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/output.txt -------------------------------------------------------------------------------- /keyrecovery/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/plot.py -------------------------------------------------------------------------------- /keyrecovery/rand_access_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/rand_access_gen.py -------------------------------------------------------------------------------- /keyrecovery/tesss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/tesss.py -------------------------------------------------------------------------------- /keyrecovery/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/test.py -------------------------------------------------------------------------------- /keyrecovery/test_part.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/test_part.csv -------------------------------------------------------------------------------- /keyrecovery/try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/keyrecovery/try.py -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/restart.sh -------------------------------------------------------------------------------- /target/TestEnclave/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/.cproject -------------------------------------------------------------------------------- /target/TestEnclave/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/.project -------------------------------------------------------------------------------- /target/TestEnclave/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/App.cpp -------------------------------------------------------------------------------- /target/TestEnclave/App/App.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/App.cpp~ -------------------------------------------------------------------------------- /target/TestEnclave/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/App.h -------------------------------------------------------------------------------- /target/TestEnclave/App/App.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/App.o -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Arrays.cpp -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Arrays.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Arrays.o -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Functions.cpp -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Functions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Functions.o -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Pointers.cpp -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Pointers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Pointers.o -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Types.cpp -------------------------------------------------------------------------------- /target/TestEnclave/App/Edger8rSyntax/Types.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Edger8rSyntax/Types.o -------------------------------------------------------------------------------- /target/TestEnclave/App/Enclave_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Enclave_u.c -------------------------------------------------------------------------------- /target/TestEnclave/App/Enclave_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Enclave_u.h -------------------------------------------------------------------------------- /target/TestEnclave/App/Enclave_u.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/Enclave_u.o -------------------------------------------------------------------------------- /target/TestEnclave/App/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/debug.h -------------------------------------------------------------------------------- /target/TestEnclave/App/multiple.txt_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/multiple.txt_bak -------------------------------------------------------------------------------- /target/TestEnclave/App/multiple.txt_bak~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/App/multiple.txt_bak~ -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Arrays.cpp -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Arrays.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Arrays.edl -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Arrays.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Arrays.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Functions.cpp -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Functions.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Functions.edl -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Functions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Functions.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Pointers.cpp -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Pointers.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Pointers.edl -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Pointers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Pointers.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Types.cpp -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Types.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Types.edl -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Edger8rSyntax/Types.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Edger8rSyntax/Types.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.config.xml -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.cpp -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.cpp~ -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.edl -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.edl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.edl~ -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.h -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.lds -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave_private.pem -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave_t.c -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave_t.h -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/Enclave_t.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/Enclave_t.o -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/aes.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/aes.h~ -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/aes_locl.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/aes_locl.h~ -------------------------------------------------------------------------------- /target/TestEnclave/Enclave/rand_access_gen.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Enclave/rand_access_gen.py~ -------------------------------------------------------------------------------- /target/TestEnclave/Include/user_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Include/user_types.h -------------------------------------------------------------------------------- /target/TestEnclave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/Makefile -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/MyPinTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/MyPinTool.cpp -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/MyPinTool.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/MyPinTool.cpp~ -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/makefile -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/makefile.rules -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/obj-intel64/MyPinTool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/obj-intel64/MyPinTool.so -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/output.txt -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/output.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/MyPinTool/output.txt~ -------------------------------------------------------------------------------- /target/TestEnclave/MyPinTool/pin.log: -------------------------------------------------------------------------------- 1 | Pin 3.0 kit 76887 2 | E: Missing application name 3 | -------------------------------------------------------------------------------- /target/TestEnclave/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/README.txt -------------------------------------------------------------------------------- /target/TestEnclave/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/app -------------------------------------------------------------------------------- /target/TestEnclave/enclave.signed.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/enclave.signed.so -------------------------------------------------------------------------------- /target/TestEnclave/enclave.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/enclave.so -------------------------------------------------------------------------------- /target/TestEnclave/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/TestEnclave/make.sh -------------------------------------------------------------------------------- /target/enclave.signed.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vernamlab/CacheZoom/HEAD/target/enclave.signed.so --------------------------------------------------------------------------------