aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-05-19 04:13:47 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-05-19 04:13:47 +0300
commitaebc96e6efc369c09a95fb641ca90935930cf19b (patch)
tree38db5723b71c13804a88e9e129f9a20807b78f4e /src
parentREADME update (diff)
downloadaes-tools-aebc96e6efc369c09a95fb641ca90935930cf19b.tar.gz
aes-tools-aebc96e6efc369c09a95fb641ca90935930cf19b.zip
rename the project
Diffstat (limited to '')
-rw-r--r--src/aes.c2
-rw-r--r--src/box.c2
-rw-r--r--src/box_aes.c2
-rw-r--r--src/c/aes128.c2
-rw-r--r--src/c/aes192.c2
-rw-r--r--src/c/aes256.c2
-rw-r--r--src/error.c2
-rw-r--r--src/padding.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/aes.c b/src/aes.c
index 82db7cc..f3dc178 100644
--- a/src/aes.c
+++ b/src/aes.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <assert.h>
#include <stdio.h>
diff --git a/src/box.c b/src/box.c
index 8869f69..7a26333 100644
--- a/src/box.c
+++ b/src/box.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/box_aes.c b/src/box_aes.c
index 62cb4f2..66eacae 100644
--- a/src/box_aes.c
+++ b/src/box_aes.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/c/aes128.c b/src/c/aes128.c
index a99c8a7..94e8a05 100644
--- a/src/c/aes128.c
+++ b/src/c/aes128.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <emmintrin.h>
#include <wmmintrin.h>
diff --git a/src/c/aes192.c b/src/c/aes192.c
index a8ae6cf..570ab0e 100644
--- a/src/c/aes192.c
+++ b/src/c/aes192.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <emmintrin.h>
#include <wmmintrin.h>
diff --git a/src/c/aes256.c b/src/c/aes256.c
index 6099204..23ac9ca 100644
--- a/src/c/aes256.c
+++ b/src/c/aes256.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <emmintrin.h>
#include <wmmintrin.h>
diff --git a/src/error.c b/src/error.c
index 10550f3..49d8c72 100644
--- a/src/error.c
+++ b/src/error.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <assert.h>
#include <stdio.h>
diff --git a/src/padding.c b/src/padding.c
index 08cafb1..f76e7ca 100644
--- a/src/padding.c
+++ b/src/padding.c
@@ -6,7 +6,7 @@
* See LICENSE.txt for details.
*/
-#include <aesni/all.h>
+#include <aes/all.h>
#include <stdlib.h>
#include <string.h>