diff options
author | Werner Koch <[email protected]> | 1998-03-09 21:44:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-03-09 21:44:06 +0000 |
commit | a6a8f1e706bd7e528262151bc04ebb9409c2eeed (patch) | |
tree | 20b5771581e695a22559d8ffe3f90862afb11e3d /include/cipher.h | |
parent | removed g10maint.c (diff) | |
download | gnupg-a6a8f1e706bd7e528262151bc04ebb9409c2eeed.tar.gz gnupg-a6a8f1e706bd7e528262151bc04ebb9409c2eeed.zip |
partial DSA support
Diffstat (limited to 'include/cipher.h')
-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[]; |