diff --git a/HWBTutorials.code-workspace b/HWBTutorials.code-workspace index c318164..17f446a 100644 --- a/HWBTutorials.code-workspace +++ b/HWBTutorials.code-workspace @@ -11,13 +11,17 @@ "name": "AES", "path": "./aes" }, + { + "name": "AES Performance", + "path": "./aes-performance" + }, { "name": "AES 32-bit", - "path": "./aes-32bit" + "path": "./aes-performance/aes-32bit" }, { "name": "AES TBoxes", - "path": "./aes-tboxes" + "path": "./aes-performance/aes-tboxes" }, { "name": "TRNG Attack", diff --git a/aes-32bit/Makefile b/aes-performance/aes-32bit/Makefile similarity index 100% rename from aes-32bit/Makefile rename to aes-performance/aes-32bit/Makefile diff --git a/aes-32bit/aes.cpp b/aes-performance/aes-32bit/aes.cpp similarity index 100% rename from aes-32bit/aes.cpp rename to aes-performance/aes-32bit/aes.cpp diff --git a/aes-tboxes/Makefile b/aes-performance/aes-tboxes/Makefile similarity index 100% rename from aes-tboxes/Makefile rename to aes-performance/aes-tboxes/Makefile diff --git a/aes-tboxes/aes.cpp b/aes-performance/aes-tboxes/aes.cpp similarity index 100% rename from aes-tboxes/aes.cpp rename to aes-performance/aes-tboxes/aes.cpp