├── .gitignore ├── LICENSE ├── README.md ├── cacheutils.h ├── calibration ├── Makefile └── calibration.c ├── exploitation ├── Makefile └── spy.c ├── profiling ├── Makefile ├── spy.c └── spy.sh └── profiling_aes_example ├── Makefile └── spy.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | spy 3 | victim 4 | *~ 5 | core 6 | calibration 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/README.md -------------------------------------------------------------------------------- /cacheutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/cacheutils.h -------------------------------------------------------------------------------- /calibration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/calibration/Makefile -------------------------------------------------------------------------------- /calibration/calibration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/calibration/calibration.c -------------------------------------------------------------------------------- /exploitation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/exploitation/Makefile -------------------------------------------------------------------------------- /exploitation/spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/exploitation/spy.c -------------------------------------------------------------------------------- /profiling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/profiling/Makefile -------------------------------------------------------------------------------- /profiling/spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/profiling/spy.c -------------------------------------------------------------------------------- /profiling/spy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/profiling/spy.sh -------------------------------------------------------------------------------- /profiling_aes_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/profiling_aes_example/Makefile -------------------------------------------------------------------------------- /profiling_aes_example/spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isec-tugraz/cache_template_attacks/HEAD/profiling_aes_example/spy.cpp --------------------------------------------------------------------------------