summaryrefslogtreecommitdiff
path: root/src/CAST.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/CAST.c
parent2d1aecd731f91f7367ef2a4069d305e2a1b488c0 (diff)
downloadpycrypto-select-modes.tar.gz
Allow block ciphers to specify which modes they supportselect-modes
Diffstat (limited to 'src/CAST.c')
-rw-r--r--src/CAST.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CAST.c b/src/CAST.c
index d7b00f3..9476683 100644
--- a/src/CAST.c
+++ b/src/CAST.c
@@ -48,6 +48,12 @@
#define BLOCK_SIZE 8
#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
+
/* adjust these according to your compiler/platform. On some machines
uint32 will have to be a long. It's OK if uint32 is more than 32 bits. */
typedef uint32_t uint32;