diff options
author | David Shaw <[email protected]> | 2003-12-17 19:05:23 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-12-17 19:05:23 +0000 |
commit | 68b3e412f49f7cfe0d00ebc66bce8d14a17439e8 (patch) | |
tree | 7f27839d5dfc6e8046d035235b6a8bbbd953ebc4 /cipher/dsa.c | |
parent | * cipher.h (pubkey_verify): Remove old unused code. (diff) | |
download | gnupg-68b3e412f49f7cfe0d00ebc66bce8d14a17439e8.tar.gz gnupg-68b3e412f49f7cfe0d00ebc66bce8d14a17439e8.zip |
* dsa.h, dsa.c (dsa_verify), elgamal.h, elgamal.c (elg_verify), rsa.h,
rsa.c (rsa_verify), pubkey.c (dummy_verify, pubkey_verify): Remove old
unused code.
Diffstat (limited to '')
-rw-r--r-- | cipher/dsa.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cipher/dsa.c b/cipher/dsa.c index d728a1b10..b243f333f 100644 --- a/cipher/dsa.c +++ b/cipher/dsa.c @@ -426,8 +426,7 @@ dsa_sign( int algo, MPI *resarr, MPI data, MPI *skey ) } int -dsa_verify( int algo, MPI hash, MPI *data, MPI *pkey, - int (*cmp)(void *, MPI), void *opaquev ) +dsa_verify( int algo, MPI hash, MPI *data, MPI *pkey ) { DSA_public_key pk; @@ -479,5 +478,3 @@ dsa_get_info( int algo, int *npkey, int *nskey, int *nenc, int *nsig, default: *use = 0; return NULL; } } - - |