aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/cipher.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2002-09-10 08:41:44 +0000
committerWerner Koch <[email protected]>2002-09-10 08:41:44 +0000
commit20c73570b3fd9ad0b9850f6c395a8684fd83f7e3 (patch)
treeac796a0b946c38ef4981ddb0f3f6d25b29534788 /cipher/cipher.c
parentCleanups and minor fixes. (diff)
downloadgnupg-20c73570b3fd9ad0b9850f6c395a8684fd83f7e3.tar.gz
gnupg-20c73570b3fd9ad0b9850f6c395a8684fd83f7e3.zip
typo fixes and disabled dummy cipher
Diffstat (limited to '')
-rw-r--r--cipher/cipher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/cipher.c b/cipher/cipher.c
index ecab7a520..9a774cf85 100644
--- a/cipher/cipher.c
+++ b/cipher/cipher.c
@@ -32,7 +32,7 @@
/* We have support for a DUMMY encryption cipher which comes handy to
debug MDCs and similar things. Because this is a bit dangerous it
is not enabled. */
-#define ALLOW_DUMMY 1
+/*#define ALLOW_DUMMY 1 */
#define MAX_BLOCKSIZE 16
#define TABLE_SIZE 14
@@ -175,7 +175,7 @@ setup_cipher_table(void)
&cipher_table[i].encrypt,
&cipher_table[i].decrypt );
if (cipher_table[i].name)
- i++; /* Note that IDEA is usually no available. */
+ i++; /* Note that IDEA is usually not available. */
#ifdef ALLOW_DUMMY
cipher_table[i].algo = CIPHER_ALGO_DUMMY;