summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-10 23:01:30 +0200
committerLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-10 23:01:30 +0200
commitc47425619c6e8e7617fc421eb01ebc9ed1f8eb43 (patch)
treeddde23a15cab67daf29a0ac6a5f0fad4810e15d4 /src
parente88db3739daefb65e459845fde880c0c8a7ae31f (diff)
downloadpycrypto-c47425619c6e8e7617fc421eb01ebc9ed1f8eb43.tar.gz
Added documentation for Triple DES.
Diffstat (limited to 'src')
-rw-r--r--src/DES.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DES.c b/src/DES.c
index ba63a09..96a9335 100644
--- a/src/DES.c
+++ b/src/DES.c
@@ -98,7 +98,7 @@ static void block_decrypt(block_state *self, unsigned char *in, unsigned char *o
}
#ifdef PCT_DES3_MODULE
-# define MODULE_NAME DES3 /* triple DES */
+# define MODULE_NAME _DES3 /* triple DES */
# define BLOCK_SIZE 8 /* 64-bit block size */
# define KEY_SIZE 0 /* variable key size (can be 128 or 192 bits (including parity) */
#else