diff options
author | Werner Koch <[email protected]> | 1997-11-24 11:04:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1997-11-24 11:04:11 +0000 |
commit | a51cca90b6c8d3628d9b97a08f9370b3e249a9b6 (patch) | |
tree | 093b652e684cef1623777be8ea2b96876f9ee1e7 /include/cipher.h | |
parent | compress stuff implemented (diff) | |
download | gnupg-a51cca90b6c8d3628d9b97a08f9370b3e249a9b6.tar.gz gnupg-a51cca90b6c8d3628d9b97a08f9370b3e249a9b6.zip |
IDEA removed, signing works
Diffstat (limited to 'include/cipher.h')
-rw-r--r-- | include/cipher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cipher.h b/include/cipher.h index a19fcfdb7..e178b5f4e 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -33,14 +33,13 @@ #ifdef HAVE_RSA_CIPHER #include "../cipher/rsa.h" #endif -#include "../cipher/idea.h" #include "../cipher/blowfish.h" #include "../cipher/gost.h" #include "../cipher/elgamal.h" #define CIPHER_ALGO_NONE 0 -#define CIPHER_ALGO_IDEA 1 +#define CIPHER_ALGO_IDEA 1 /* used only for documentation */ #define CIPHER_ALGO_BLOWFISH 42 #define CIPHER_ALGO_GOST 43 @@ -84,6 +83,7 @@ MPI generate_random_prime( unsigned nbits ); /*-- seskey.c --*/ void make_session_key( DEK *dek ); MPI encode_session_key( DEK *dek, unsigned nbits ); +MPI encode_rmd160_value( byte *md, unsigned len, unsigned nbits ); #endif /*G10_CIPHER_H*/ |