From: Matthias Kalle Dalheimer Date: Fri, 1 Mar 2002 17:54:26 +0000 (+0000) Subject: Support for warning when a CRL expires X-Git-Tag: V0-3-4~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cea9be523e9d0c3253a5f6d6d45afa5b3260cd8f;p=gpgme.git Support for warning when a CRL expires --- diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index b891c12..9cdeb07 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -865,6 +865,14 @@ void setEncryptionCRLNearExpiryInterval( int ); int encryptionCRLNearExpiryInterval( void ); +/*! \ingroup groupConfigCrypt + \brief Returns the number of days the currently active certification + list is still valid. +*/ +int encryptionCRLsDaysLeftToExpiry( void ); + + + /*! \ingroup groupConfigDir \brief This function returns an XML representation of a configuration dialog for selecting a directory diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index fae689a..0de5d49 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -681,6 +681,11 @@ bool receiverEmailAddressNotInCertificateWarning() void setEncryptionUseCRLs( bool flag ) { config.encryptionUseCRLs = flag; + + /* PENDING(g10) Store this setting in gpgme and use it. If true, + every certificate used for encryption should be checked against + applicable CRLs. + */ } bool encryptionUseCRLs() @@ -688,6 +693,16 @@ bool encryptionUseCRLs() return config.encryptionUseCRLs; } + +int encryptionCRLsDaysLeftToExpiry() +{ + /* PENDING(g10) + Please return the number of days that are left until the + CRL used for encryption expires. + */ + return 10; // dummy that triggers a warning in the MUA +} + void setEncryptionCRLExpiryNearWarning( bool flag ) { config.encryptionCRLExpiryNearWarning = flag;