Show
Ignore:
Timestamp:
2008-07-01 17:57:37 (5 months ago)
Author:
Brendan Cully <brendan@…>
Branch:
HEAD
Message:

Stub in a gpgme version of extract-keys. It doesn't currently work
right because apparently while gpg on the command line can parse a
whole message, we'll have to do it for gpgme. I really wonder about
the 'ME' part of GPGME sometimes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • crypt-mod-pgp-gpgme.c

    r4917 r5439  
    6666} 
    6767 
     68static void crypt_mod_pgp_invoke_import (const char *fname) 
     69{ 
     70  pgp_gpgme_invoke_import (fname); 
     71} 
     72 
    6873static char *crypt_mod_pgp_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc) 
    6974{ 
     
    118123      NULL,                     /* pgp_traditional_encryptsign  */ 
    119124      NULL, /* pgp_invoke_getkeys  */ 
    120       NULL, /* pgp_invoke_import  */ 
     125      crypt_mod_pgp_invoke_import, 
    121126      NULL, /* pgp_extract_keys_from_attachment_list  */ 
    122127