From 70251d0f5fd18a1b4330b1af3d6a2a8219bc23c7 Mon Sep 17 00:00:00 2001 From: Karl-Heinz Zimmer Date: Thu, 21 Mar 2002 21:48:33 +0000 Subject: [PATCH] changed code according to our hack before CeBIT, we are giving *binary* data to the decryptMessage() and to the checkMessageSignature() methode instead of passing base64 encoded data to them --- gpgmeplug/cryptplug.h | 7 +++++-- gpgmeplug/gpgmeplug.c | 29 ++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index ed936f7..e3aea6c 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -1549,8 +1549,11 @@ bool encryptAndSignMessage( const char* cleartext, \c true, otherwise \c false. */ -bool decryptMessage( const char* ciphertext, const - char** cleartext, const char* certificate ); +bool decryptMessage( const char* ciphertext, + bool cipherIsBinary, + int cipherLen, + const char** cleartext, + const char* certificate ); /*! \ingroup groupCryptAct \brief Combines the functionality of diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 474e439..5b856e8 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -1204,8 +1204,8 @@ bool findCertificates( const char* addressee, char** certificates ) GpgmeKey rKey; const char *s; const char *s2; - bool bOk = false; - + int nFound = 0; + strcpy( *certificates, "" ); gpgme_new (&ctx); @@ -1215,21 +1215,25 @@ bool findCertificates( const char* addressee, char** certificates ) while( GPGME_No_Error == err ) { err = gpgme_op_keylist_next(ctx, &rKey); if( GPGME_No_Error == err ) { - bOk = true; s = gpgme_key_get_string_attr (rKey, GPGME_ATTR_USERID, NULL, 0); if( s ) { s2 = gpgme_key_get_string_attr (rKey, GPGME_ATTR_FPR, NULL, 0); if( s2 ) { + if( nFound ) + strcat(*certificates,"\1" ); strcat( *certificates, s ); strcat( *certificates, " (" ); strcat( *certificates, s2 ); - strcat( *certificates, ")\1" ); + strcat( *certificates, ")" ); + ++nFound; } } } } gpgme_op_keylist_end( ctx ); - return bOk; + gpgme_release (ctx); + + return ( 0 < nFound ); } bool encryptMessage( const char* cleartext, @@ -1419,7 +1423,10 @@ bool encryptAndSignMessage( const char* cleartext, return bOk; } + bool decryptMessage( const char* ciphertext, + bool cipherIsBinary, + int cipherLen, const char** cleartext, const char* certificate ) { @@ -1435,9 +1442,21 @@ bool decryptMessage( const char* ciphertext, err = gpgme_new (&ctx); gpgme_set_protocol (ctx, GPGMEPLUG_PROTOCOL); + + gpgme_set_armor (ctx, cipherIsBinary ? 0 : 1); +// gpgme_set_textmode (ctx, cipherIsBinary ? 0 : 1); + /* gpgme_data_new_from_mem( &gCiphertext, ciphertext, 1+strlen( ciphertext ), 1 ); + */ + gpgme_data_new_from_mem( &gCiphertext, + ciphertext, + cipherIsBinary + ? cipherLen + : strlen( ciphertext ), + 1 ); + gpgme_data_new( &gPlaintext ); gpgme_op_decrypt( ctx, gCiphertext, gPlaintext ); -- 2.26.2