From: Steffen Hansen Date: Mon, 10 Jun 2002 18:37:11 +0000 (+0000) Subject: support for listing of external certs (untested) X-Git-Tag: gpgme-0-3-8~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8ac95a977290ea119de1b57c7361f722aaf78bd2;p=gpgme.git support for listing of external certs (untested) --- diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index aa0b912..a494cc7 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -1750,7 +1750,7 @@ struct CertificateInfo { endListCertificates( it ); \endverbatim */ -struct CertIterator* startListCertificates( const char* pattern ); +struct CertIterator* startListCertificates( const char* pattern, int remote ); struct CertificateInfo* nextCertificate( struct CertIterator* ); void endListCertificates( struct CertIterator* ); diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 7b1cc94..59150e2 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -1997,7 +1997,7 @@ struct CertIterator { struct CertificateInfo info; }; -struct CertIterator* startListCertificates( const char* pattern ) +struct CertIterator* startListCertificates( const char* pattern, int remote ) { GpgmeError err; struct CertIterator* it; @@ -2013,6 +2013,8 @@ struct CertIterator* startListCertificates( const char* pattern ) } gpgme_set_protocol (it->ctx, GPGME_PROTOCOL_CMS); + if( remote ) gpgme_set_keylist_mode ( it->ctx, GPGME_KEYLIST_MODE_EXTERN ); + else gpgme_set_keylist_mode ( it->ctx, GPGME_KEYLIST_MODE_LOCAL ); err = gpgme_op_keylist_start ( it->ctx, pattern, 0); if( err != GPGME_No_Error ) { endListCertificates( it );