diff options
| author | Werner Koch <[email protected]> | 1997-12-12 12:03:58 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 1997-12-12 12:03:58 +0000 |
| commit | 68ea0f43533096d5c46bad4aee6e5d5864307f4a (patch) | |
| tree | f5d3601897a3bdfbce113d5e1ed8b4336c83744a /cipher/elgamal.h | |
| parent | fingerprints and self signatures added (diff) | |
| download | gnupg-68ea0f43533096d5c46bad4aee6e5d5864307f4a.tar.gz gnupg-68ea0f43533096d5c46bad4aee6e5d5864307f4a.zip | |
added option file handling
Diffstat (limited to 'cipher/elgamal.h')
| -rw-r--r-- | cipher/elgamal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/elgamal.h b/cipher/elgamal.h index 4086a8fc5..15121f55c 100644 --- a/cipher/elgamal.h +++ b/cipher/elgamal.h @@ -41,8 +41,8 @@ void elg_free_public_key( ELG_public_key *pk ); void elg_free_secret_key( ELG_secret_key *sk ); void elg_generate( ELG_public_key *pk, ELG_secret_key *sk, unsigned nbits ); int elg_check_secret_key( ELG_secret_key *sk ); -void elg_encrypted(MPI a, MPI b, MPI input, ELG_public_key *pkey ); -void elg_decrypted(MPI output, MPI a, MPI b, ELG_secret_key *skey ); +void elg_encrypt(MPI a, MPI b, MPI input, ELG_public_key *pkey ); +void elg_decrypt(MPI output, MPI a, MPI b, ELG_secret_key *skey ); void elg_sign(MPI a, MPI b, MPI input, ELG_secret_key *skey); int elg_verify(MPI a, MPI b, MPI input, ELG_public_key *pkey); |
