diff options
author | Werner Koch <[email protected]> | 1998-06-15 15:41:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-06-15 15:41:04 +0000 |
commit | 6e1ca6b80fb50ff5e1c065b7ac12635487b4a6d2 (patch) | |
tree | 7c4a888893a91b59753b3d89e59832f8c24ba039 /cipher/dynload.c | |
parent | gnupg extension are now working (diff) | |
download | gnupg-6e1ca6b80fb50ff5e1c065b7ac12635487b4a6d2.tar.gz gnupg-6e1ca6b80fb50ff5e1c065b7ac12635487b4a6d2.zip |
extensions are now working and fixed a lot of bugs
Diffstat (limited to '')
-rw-r--r-- | cipher/dynload.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cipher/dynload.c b/cipher/dynload.c index e0b2e77e3..71f0d1959 100644 --- a/cipher/dynload.c +++ b/cipher/dynload.c @@ -221,7 +221,8 @@ enum_gnupgext_pubkeys( void **enum_context, int *algo, int (**encrypt)( int algo, MPI *resarr, MPI data, MPI *pkey ), int (**decrypt)( int algo, MPI *result, MPI *data, MPI *skey ), int (**sign)( int algo, MPI *resarr, MPI data, MPI *skey ), - int (**verify)( int algo, MPI hash, MPI *data, MPI *pkey ), + int (**verify)( int algo, MPI hash, MPI *data, MPI *pkey, + int (*cmp)(void *, MPI), void *opaquev ), unsigned (**get_nbits)( int algo, MPI *pkey ) ) { EXTLIST r; @@ -232,7 +233,8 @@ enum_gnupgext_pubkeys( void **enum_context, int *algo, int (**)( int, MPI *, MPI , MPI * ), int (**)( int, MPI *, MPI *, MPI * ), int (**)( int, MPI *, MPI , MPI * ), - int (**)( int, MPI , MPI *, MPI * ), + int (**)( int, MPI , MPI *, MPI *, + int (*)(void*,MPI), void *), unsigned (**)( int , MPI * ) ); if( !*enum_context ) { /* init context */ |