summaryrefslogtreecommitdiff
path: root/src/ARC2.c
diff options
context:
space:
mode:
authorDwayne Litzenberger <dlitz@dlitz.net>2014-06-09 05:14:13 -0700
committerDwayne Litzenberger <dlitz@dlitz.net>2014-06-09 05:14:15 -0700
commit460a33f6f7949320e3df5c9f5f12b70bf1310412 (patch)
tree68549842dbc48d5a1b14984f24f3bc2ba4697062 /src/ARC2.c
parent2d1aecd731f91f7367ef2a4069d305e2a1b488c0 (diff)
downloadpycrypto-select-modes.tar.gz
Allow block ciphers to specify which modes they supportselect-modes
Diffstat (limited to 'src/ARC2.c')
-rw-r--r--src/ARC2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ARC2.c b/src/ARC2.c
index 71858f6..d6c6f17 100644
--- a/src/ARC2.c
+++ b/src/ARC2.c
@@ -49,6 +49,12 @@
#define KEY_SIZE 0
#define PCT_ARC2_MODULE /* Defined to get ARC2's additional keyword arguments */
+#define HAS_ENCRYPT 1
+#define HAS_MODE_CBC 1
+#define HAS_MODE_CFB 1
+#define HAS_MODE_OFB 1
+#define HAS_MODE_CTR 1
+
typedef uint32_t U32;
typedef uint16_t U16;
typedef uint8_t U8;