diff options
Diffstat (limited to '')
-rw-r--r-- | include/cipher.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/cipher.h b/include/cipher.h index d7a89ab46..9987fdec9 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -34,6 +34,8 @@ #endif #include "../cipher/blowfish.h" #include "../cipher/elgamal.h" +#include "../cipher/dsa.h" +#include "../cipher/random.h" #define CIPHER_ALGO_NONE 0 @@ -78,10 +80,6 @@ int check_cipher_algo( int algo ); int check_pubkey_algo( int algo ); int check_digest_algo( int algo ); -/*-- random.c --*/ -int quick_random_gen( int onoff ); -void randomize_buffer( byte *buffer, size_t length, int level ); -byte get_random_byte( int level ); /*-- smallprime.c --*/ extern ushort small_prime_numbers[]; |