1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02:00

* cipher.h (pubkey_verify): Remove old unused code.

This commit is contained in:
David Shaw 2003-12-17 19:01:22 +00:00
parent f5d4b8dc06
commit 64dd0c4226
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-12-17 David Shaw <dshaw@localhost.localdomain>
* cipher.h (pubkey_verify): Remove old unused code.
2003-12-03 David Shaw <dshaw@jabberwocky.com>
* cipher.h: Make cipher list match 2440bis-09.

View File

@ -185,8 +185,7 @@ int pubkey_check_secret_key( int algo, MPI *skey );
int pubkey_encrypt( int algo, MPI *resarr, MPI data, MPI *pkey );
int pubkey_decrypt( int algo, MPI *result, MPI *data, MPI *skey );
int pubkey_sign( int algo, MPI *resarr, MPI hash, MPI *skey );
int pubkey_verify( int algo, MPI hash, MPI *data, MPI *pkey,
int (*cmp)(void *, MPI), void *opaque );
int pubkey_verify( int algo, MPI hash, MPI *data, MPI *pkey );
/*-- smallprime.c --*/
extern ushort small_prime_numbers[];