aboutsummaryrefslogtreecommitdiffstats
path: root/g10/main.h
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-02-22 13:00:18 +0000
committerDavid Shaw <[email protected]>2003-02-22 13:00:18 +0000
commit6f41d068418ca9a9ff7541d5fafc1fcdb20804cf (patch)
tree4f508a2ed6846271970e2ee48cd0bcb77db6c087 /g10/main.h
parent* configure.ac: Add --disable-xxx options for CAST5, BLOWFISH, AES (all), (diff)
downloadgnupg-6f41d068418ca9a9ff7541d5fafc1fcdb20804cf.tar.gz
gnupg-6f41d068418ca9a9ff7541d5fafc1fcdb20804cf.zip
* g10.c (main): Accept "s1" in addition to "idea" to match the other
ciphers. * main.h, misc.c (idea_cipher_warn): We don't need this if IDEA has been disabled.
Diffstat (limited to 'g10/main.h')
-rw-r--r--g10/main.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h
index 418653460..c41d783ff 100644
--- a/g10/main.h
+++ b/g10/main.h
@@ -72,7 +72,12 @@ int openpgp_cipher_test_algo( int algo );
int openpgp_pk_test_algo( int algo, unsigned int usage_flags );
int openpgp_pk_algo_usage ( int algo );
int openpgp_md_test_algo( int algo );
+
+#ifdef USE_IDEA
void idea_cipher_warn( int show );
+#else
+#define idea_cipher_warn(a)
+#endif
struct expando_args
{