Support for various warnings about expiring encryption certificates.
authorMatthias Kalle Dalheimer <kalle@kdab.net>
Thu, 7 Mar 2002 21:18:27 +0000 (21:18 +0000)
committerMatthias Kalle Dalheimer <kalle@kdab.net>
Thu, 7 Mar 2002 21:18:27 +0000 (21:18 +0000)
Support for checking encryption certificate paths.

Needs GPGME support.

trunk/gpgmeplug/cryptplug.h
trunk/gpgmeplug/gpgmeplug.c

index 1b1aeadf9008ea3230063e0f82e372459a5a41f2..ba346dec6d39fb70d128692dd08451cfbb048eb6 100644 (file)
@@ -769,6 +769,14 @@ void setReceiverCertificateExpiryNearWarning( bool );
   certificate of the receiver expires in the near future.
 */
 bool receiverCertificateExpiryNearWarning( void );
+
+
+/*! \ingroup groupConfigCrypt
+  \brief Returns the number of days until the specified receiver
+  certificate expires.
+*/
+int receiverCertificateDaysLeftToExpiry( const char* certificate );
+
     
 
 /*! \ingroup groupConfigCrypt
@@ -810,6 +818,13 @@ void setCertificateInChainExpiryNearWarningInterval( int );
 */
 int certificateInChainExpiryNearWarningInterval( void );
 
+
+/*! \ingroup groupConfigCrypt
+  \brief Returns the number of days until the first certificate in
+  the chain of the receiver certificate expires.
+*/
+int certificateInChainDaysLeftToExpiry( const char* certificate );
+
     
 /*! \ingroup groupConfigCrypt
   \brief Specifies whether a warning is emitted if the email address
index 8fb11aebaf77ef02814256e41e15af60e496c4a1..a923d41e36405495c2dbd0a15c6a2f7f10e04eb8 100644 (file)
@@ -632,6 +632,17 @@ bool receiverCertificateExpiryNearWarning()
   return config.receiverCertificateExpiryNearWarning;
 }
 
+
+int receiverCertificateDaysLeftToExpiry( const char* certificate )
+{
+    /* PENDING(g10)
+       Please return the number of days that are left until the
+       certificate specified in the parameter certificate expires.
+    */
+    return 10; // dummy that triggers a warning in the MUA
+}
+
+
 void setReceiverCertificateExpiryNearWarningInterval( int interval )
 {
   config.receiverCertificateExpiryNearWarningInterval = interval;
@@ -652,6 +663,18 @@ bool certificateInChainExpiryNearWarning()
   return config.certificateInChainExpiryNearWarning;
 }
 
+
+int certificateInChainDaysLeftToExpiry( const char* certificate )
+{
+    /* PENDING(g10)
+       Please return the number of days that are left until the
+       the first certificate in the chain of the specified certificate
+       expires.
+    */
+    return 10; // dummy that triggers a warning in the MUA
+}
+
+
 void setCertificateInChainExpiryNearWarningInterval( int interval )
 {
   config.certificateInChainExpiryNearWarningInterval = interval;
@@ -1169,6 +1192,19 @@ bool encryptMessage( const char* cleartext,
     }
   }
 
+  // PENDING(g10) Implement this
+  // Possible values: RSA = 1, SHA1 = 2, TripleDES = 3
+  //gpgme_set_encryption_algorithm( ctx, config.encryptionAlgorithm );
+
+
+  // PENDING(g10) Implement this
+  // gpgme_set_encryption_check_certificate_path(
+  // config.checkCertificatePath )
+
+  // PENDING(g10) Implement this
+  // gpgme_set_encryption_check_certificate_path_to_root(
+  // config.checkEncryptionCertificatePathToRoot )
+
 
   err = gpgme_op_encrypt (ctx, rset, gPlaintext, gCiphertext );
   if( err )