diff options
| author | Karl-Heinz Zimmer <[email protected]> | 2001-11-26 15:54:12 +0000 | 
|---|---|---|
| committer | Karl-Heinz Zimmer <[email protected]> | 2001-11-26 15:54:12 +0000 | 
| commit | 86490c114bf1f80d191721ec09e4c994683ee461 (patch) | |
| tree | 757c2873e98e78dedbeebc7af42193da53a2b24d | |
| parent | 2001-11-26 Marcus Brinkmann <[email protected]> (diff) | |
| download | gpgme-86490c114bf1f80d191721ec09e4c994683ee461.tar.gz gpgme-86490c114bf1f80d191721ec09e4c994683ee461.zip | |
enabled fetching meta data after checking of signature(s)
| -rw-r--r-- | gpgmeplug/gpgmeplug.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 8e9fd006..6d2cd254 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -765,7 +765,7 @@ bool signMessage( const char*  cleartext,        bOk = true;        strncpy((char*)*ciphertext, rSig, rSLen );      } -    ((char*)(*ciphertext))[rSLen] = 0; +    ((char*)(*ciphertext))[rSLen] = '\0';    }    free( rSig ); @@ -803,18 +803,18 @@ sig_status_to_string( GpgmeSigStat status )          result = "Different results for signatures";          break;        default: -	result = "Error: Unknown status"; -	break; +        result = "Error: Unknown status"; +        break;      }      return result;  } -bool checkMessageSignature( const char* ciphertext,  +bool checkMessageSignature( const char* ciphertext,                              const char* signaturetext,                              struct SignatureMetaData* sigmeta ) -{  +{      GpgmeCtx ctx;      GpgmeSigStat status;      GpgmeData datapart, sigpart; @@ -834,9 +834,7 @@ bool checkMessageSignature( const char* ciphertext,      gpgme_op_verify( ctx, sigpart, datapart, &status );      gpgme_data_release( datapart );      gpgme_data_release( sigpart ); -    gpgme_release( ctx ); -#ifdef THIS_IS_UNTESTED_USE_AT_YOUR_OWN_RISK      /* Provide information in the sigmeta struct */      /* the status string */      statusStr = sig_status_to_string( status ); @@ -861,6 +859,7 @@ bool checkMessageSignature( const char* ciphertext,          ctime_val = localtime( &created );          memcpy( sigmeta->extended_info[sig_idx].creation_time,                  ctime_val, sizeof( struct tm ) ); +          err = gpgme_get_sig_key (ctx, sig_idx, &key);          sig_status = sig_status_to_string( status );          // PENDING(kalle) Handle out of memory @@ -878,7 +877,8 @@ bool checkMessageSignature( const char* ciphertext,      sigmeta->extended_info_count = sig_idx;      sigmeta->nota_xml = gpgme_get_notation( ctx );      sigmeta->status_code = status; -#endif + +    gpgme_release( ctx );      return ( status == GPGME_SIG_STAT_GOOD );  } | 
