diff options
author | David Shaw <[email protected]> | 2003-12-17 19:01:22 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-12-17 19:01:22 +0000 |
commit | 64dd0c42262f984430f206667ba0257a5a1bfa76 (patch) | |
tree | 166e8772b23ddaa2d7ee2a3b3cfbaca10c992ee3 | |
parent | * sig-check.c (do_check): Move the signing algo and hash checks from (diff) | |
download | gnupg-64dd0c42262f984430f206667ba0257a5a1bfa76.tar.gz gnupg-64dd0c42262f984430f206667ba0257a5a1bfa76.zip |
* cipher.h (pubkey_verify): Remove old unused code.
Diffstat (limited to '')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | 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 <[email protected]> + + * cipher.h (pubkey_verify): Remove old unused code. + 2003-12-03 David Shaw <[email protected]> * 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[]; |