enabled fetching meta data after checking of signature(s)

This commit is contained in:
Karl-Heinz Zimmer 2001-11-26 15:54:12 +00:00
parent a8c76a0f83
commit 86490c114b

View File

@ -765,7 +765,7 @@ bool signMessage( const char* cleartext,
bOk = true; bOk = true;
strncpy((char*)*ciphertext, rSig, rSLen ); strncpy((char*)*ciphertext, rSig, rSLen );
} }
((char*)(*ciphertext))[rSLen] = 0; ((char*)(*ciphertext))[rSLen] = '\0';
} }
free( rSig ); free( rSig );
@ -834,9 +834,7 @@ bool checkMessageSignature( const char* ciphertext,
gpgme_op_verify( ctx, sigpart, datapart, &status ); gpgme_op_verify( ctx, sigpart, datapart, &status );
gpgme_data_release( datapart ); gpgme_data_release( datapart );
gpgme_data_release( sigpart ); gpgme_data_release( sigpart );
gpgme_release( ctx );
#ifdef THIS_IS_UNTESTED_USE_AT_YOUR_OWN_RISK
/* Provide information in the sigmeta struct */ /* Provide information in the sigmeta struct */
/* the status string */ /* the status string */
statusStr = sig_status_to_string( status ); statusStr = sig_status_to_string( status );
@ -861,6 +859,7 @@ bool checkMessageSignature( const char* ciphertext,
ctime_val = localtime( &created ); ctime_val = localtime( &created );
memcpy( sigmeta->extended_info[sig_idx].creation_time, memcpy( sigmeta->extended_info[sig_idx].creation_time,
ctime_val, sizeof( struct tm ) ); ctime_val, sizeof( struct tm ) );
err = gpgme_get_sig_key (ctx, sig_idx, &key); err = gpgme_get_sig_key (ctx, sig_idx, &key);
sig_status = sig_status_to_string( status ); sig_status = sig_status_to_string( status );
// PENDING(kalle) Handle out of memory // PENDING(kalle) Handle out of memory
@ -878,7 +877,8 @@ bool checkMessageSignature( const char* ciphertext,
sigmeta->extended_info_count = sig_idx; sigmeta->extended_info_count = sig_idx;
sigmeta->nota_xml = gpgme_get_notation( ctx ); sigmeta->nota_xml = gpgme_get_notation( ctx );
sigmeta->status_code = status; sigmeta->status_code = status;
#endif
gpgme_release( ctx );
return ( status == GPGME_SIG_STAT_GOOD ); return ( status == GPGME_SIG_STAT_GOOD );
} }