From 64dd0c42262f984430f206667ba0257a5a1bfa76 Mon Sep 17 00:00:00 2001 From: David Shaw Date: Wed, 17 Dec 2003 19:01:22 +0000 Subject: [PATCH] * cipher.h (pubkey_verify): Remove old unused code. --- include/ChangeLog | 4 ++++ include/cipher.h | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) 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[];