summaryrefslogtreecommitdiff
path: root/src/AES.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/AES.c')
-rw-r--r--src/AES.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AES.c b/src/AES.c
index 1e705da..2f686d4 100644
--- a/src/AES.c
+++ b/src/AES.c
@@ -32,6 +32,12 @@
#define BLOCK_SIZE 16
#define KEY_SIZE 0
+#define HAS_ENCRYPT 1
+#define HAS_MODE_CBC 1
+#define HAS_MODE_CFB 1
+#define HAS_MODE_OFB 1
+#define HAS_MODE_CTR 1
+
#define MAXKC (256/32)
#define MAXKB (256/8)
#define MAXNR 14