aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/dsa.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cipher/dsa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cipher/dsa.h b/cipher/dsa.h
index fe977a645..dda32bd6d 100644
--- a/cipher/dsa.h
+++ b/cipher/dsa.h
@@ -23,7 +23,8 @@
int dsa_generate( int algo, unsigned nbits, MPI *skey, MPI **retfactors );
int dsa_check_secret_key( int algo, MPI *skey );
int dsa_sign( int algo, MPI *resarr, MPI data, MPI *skey );
-int dsa_verify( int algo, MPI hash, MPI *data, MPI *pkey );
+int dsa_verify( int algo, MPI hash, MPI *data, MPI *pkey,
+ int (*cmp)(void *, MPI), void *opaquev );
unsigned dsa_get_nbits( int algo, MPI *pkey );
const char *dsa_get_info( int algo, int *npkey, int *nskey,
int *nenc, int *nsig, int *usage );