summaryrefslogtreecommitdiff
path: root/src/AES.c
diff options
context:
space:
mode:
authorLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-09 20:55:07 +0200
committerLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-10 19:16:50 +0200
commit6f9fe103a582999c397f7bc8a2248613a207b780 (patch)
treec7f1bcf72442b2392d078d4a38e8bd9761bb39da /src/AES.c
parent2f8a86bd83138bfef618e763fb8b2147f1214af8 (diff)
downloadpycrypto-6f9fe103a582999c397f7bc8a2248613a207b780.tar.gz
Added documentation for AES and DES.
A new module (blockalgo) has been added. It contains a class (BlockAlgo) all ciphers derive from. The only purpose of such base class is to centralize all general documentation applicable to all block ciphers (e.g. modes) into a single file.
Diffstat (limited to 'src/AES.c')
-rw-r--r--src/AES.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AES.c b/src/AES.c
index b6a1726..0aeaeda 100644
--- a/src/AES.c
+++ b/src/AES.c
@@ -28,7 +28,7 @@
#include <stdlib.h>
#include "Python.h"
-#define MODULE_NAME AES
+#define MODULE_NAME _AES
#define BLOCK_SIZE 16
#define KEY_SIZE 0