2 * Copyright (C) 2004 g10 Code GmbH
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 This is a crytpo module wrapping the gpgme based pgp code.
27 #ifdef CRYPT_BACKEND_GPGME
29 #include "crypt-mod.h"
30 #include "crypt-gpgme.h"
32 static void crypt_mod_pgp_init (void)
37 static void crypt_mod_pgp_void_passphrase (void)
39 /* Handled by gpg-agent. */
42 static int crypt_mod_pgp_valid_passphrase (void)
44 /* Handled by gpg-agent. */
48 static int crypt_mod_pgp_decrypt_mime (FILE *a, FILE **b, BODY *c, BODY **d)
50 return pgp_gpgme_decrypt_mime (a, b, c, d);
53 static int crypt_mod_pgp_application_handler (BODY *m, STATE *s)
55 return pgp_gpgme_application_handler (m, s);
58 static int crypt_mod_pgp_encrypted_handler (BODY *m, STATE *s)
60 return pgp_gpgme_encrypted_handler (m, s);
63 static int crypt_mod_pgp_check_traditional (FILE *fp, BODY *b, int tagged_only)
65 return pgp_gpgme_check_traditional (fp, b, tagged_only);
68 static void crypt_mod_pgp_invoke_import (const char *fname)
70 pgp_gpgme_invoke_import (fname);
73 static char *crypt_mod_pgp_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc)
75 return pgp_gpgme_findkeys (to, cc, bcc);
78 static BODY *crypt_mod_pgp_sign_message (BODY *a)
80 return pgp_gpgme_sign_message (a);
83 static int crypt_mod_pgp_verify_one (BODY *sigbdy, STATE *s, const char *tempf)
85 return pgp_gpgme_verify_one (sigbdy, s, tempf);
88 static int crypt_mod_pgp_send_menu (HEADER *msg, int *redraw)
90 return pgp_gpgme_send_menu (msg, redraw);
93 static BODY *crypt_mod_pgp_encrypt_message (BODY *a, char *keylist, int sign)
95 return pgp_gpgme_encrypt_message (a, keylist, sign);
98 static void crypt_mod_pgp_set_sender (const char *sender)
100 gpgme_set_sender (sender);
103 struct crypt_module_specs crypt_mod_pgp_gpgme =
108 crypt_mod_pgp_void_passphrase,
109 crypt_mod_pgp_valid_passphrase,
110 crypt_mod_pgp_decrypt_mime,
111 crypt_mod_pgp_application_handler,
112 crypt_mod_pgp_encrypted_handler,
113 crypt_mod_pgp_findkeys,
114 crypt_mod_pgp_sign_message,
115 crypt_mod_pgp_verify_one,
116 crypt_mod_pgp_send_menu,
117 crypt_mod_pgp_set_sender,
120 crypt_mod_pgp_encrypt_message,
121 NULL, /* pgp_make_key_attachment, */
122 crypt_mod_pgp_check_traditional,
123 NULL, /* pgp_traditional_encryptsign */
124 NULL, /* pgp_invoke_getkeys */
125 crypt_mod_pgp_invoke_import,
126 NULL, /* pgp_extract_keys_from_attachment_list */
128 NULL, /* smime_getkeys */
129 NULL, /* smime_verify_sender */
130 NULL, /* smime_build_smime_entity */
131 NULL, /* smime_invoke_import */