diff options
Diffstat (limited to '')
-rw-r--r-- | cipher/elgamal.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cipher/elgamal.c b/cipher/elgamal.c index aff9a7e30..2ca784017 100644 --- a/cipher/elgamal.c +++ b/cipher/elgamal.c @@ -607,8 +607,7 @@ elg_sign( int algo, MPI *resarr, MPI data, MPI *skey ) } int -elg_verify( int algo, MPI hash, MPI *data, MPI *pkey, - int (*cmp)(void *, MPI), void *opaquev ) +elg_verify( int algo, MPI hash, MPI *data, MPI *pkey ) { ELG_public_key pk; @@ -627,7 +626,6 @@ elg_verify( int algo, MPI hash, MPI *data, MPI *pkey, } - unsigned int elg_get_nbits( int algo, MPI *pkey ) { |