From: Steffen Hansen Date: Wed, 13 Feb 2002 19:23:00 +0000 (+0000) Subject: Removed temporary passphrase callback X-Git-Tag: V0-3-4~25 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=89114b8162af6db6b1433c0d8b2391386d5bec24;p=gpgme.git Removed temporary passphrase callback --- diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index d653a52..d89f00c 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -167,31 +167,6 @@ typedef struct { Config config; - - - -/* - temporary code!! - - will be removed!! - - asking for passphrase will be handeked via gpg-agent!! -*/ -static char tmpPassphrase[1024]; -struct passphrase_cb_info_s { - GpgmeCtx c; - int did_it; -}; -static const char * -passphrase_cb (void *opaque, const char *desc, void **r_hd) -{ - return tmpPassphrase; -} - - - - - #define NEAR_EXPIRY 14 bool initialize() @@ -787,21 +762,6 @@ bool signMessage( const char* cleartext, char* rSig = 0; bool bOk = false; - - -/* - temporary code!! - - will be removed!! - - asking for passphrase will be handeked via gpg-agent!! -*/ - struct passphrase_cb_info_s info; - - - - - init_StructuringInfo( structuring ); if( !ciphertext ) @@ -810,28 +770,6 @@ bool signMessage( const char* cleartext, err = gpgme_new (&ctx); gpgme_set_protocol (ctx, GPGMEPLUG_PROTOCOL); - - - - - -/* - temporary code!! - - will be removed!! - - asking for passphrase will be handeked via gpg-agent!! -*/ - if (!getenv("GPG_AGENT_INFO")) { - info.c = ctx; - gpgme_set_passphrase_cb (ctx, passphrase_cb, &info); - } - strcpy( tmpPassphrase, certificate ); - - - - - gpgme_set_armor (ctx, 1); gpgme_set_textmode (ctx, 1); @@ -1199,47 +1137,12 @@ bool decryptMessage( const char* ciphertext, char* rCiph = 0; bool bOk = false; - - -/* - temporary code!! - - will be removed!! - - asking for passphrase will be handeked via gpg-agent!! -*/ - struct passphrase_cb_info_s info; - - - - - if( !ciphertext ) return false; err = gpgme_new (&ctx); gpgme_set_protocol (ctx, GPGMEPLUG_PROTOCOL); - - - - -/* - temporary code!! - - will be removed!! - - asking for passphrase will be handeked via gpg-agent!! -*/ - if (!getenv("GPG_AGENT_INFO")) { - info.c = ctx; - gpgme_set_passphrase_cb (ctx, passphrase_cb, &info); - } - strcpy( tmpPassphrase, certificate ); - - - - gpgme_data_new_from_mem( &gCiphertext, ciphertext, 1+strlen( ciphertext ), 1 ); gpgme_data_new( &gPlaintext );