From 183ec2907e3591f7fb80e6b692aa16e6acfa0eb9 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 19 Dec 2023 11:24:25 +0100 Subject: [PATCH] Move performance 32-bit AES versions to separate directory --- HWBTutorials.code-workspace | 8 ++++++-- {aes-32bit => aes-performance/aes-32bit}/Makefile | 0 {aes-32bit => aes-performance/aes-32bit}/aes.cpp | 0 {aes-tboxes => aes-performance/aes-tboxes}/Makefile | 0 {aes-tboxes => aes-performance/aes-tboxes}/aes.cpp | 0 5 files changed, 6 insertions(+), 2 deletions(-) rename {aes-32bit => aes-performance/aes-32bit}/Makefile (100%) rename {aes-32bit => aes-performance/aes-32bit}/aes.cpp (100%) rename {aes-tboxes => aes-performance/aes-tboxes}/Makefile (100%) rename {aes-tboxes => aes-performance/aes-tboxes}/aes.cpp (100%) 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