mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
added option file handling
This commit is contained in:
parent
935965049d
commit
68ea0f4353
38 changed files with 2772 additions and 551 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue