diff --git a/include/ChangeLog b/include/ChangeLog index 370be4874..272432679 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2003-12-17 David Shaw + + * cipher.h (pubkey_verify): Remove old unused code. + 2003-12-03 David Shaw * cipher.h: Make cipher list match 2440bis-09. diff --git a/include/cipher.h b/include/cipher.h index 1c59bb876..274242640 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -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[];