Rocco Rutte:
[apps/madmutt.git] / crypt-mod-smime-gpgme.c
1 /* 
2  * Copyright (C) 2004 g10 Code GmbH
3  *
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.
8  * 
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.
13  * 
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /* 
20     This is a crytpo module wrapping the gpgme based smime code.
21  */
22
23 #if HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #ifdef CRYPT_BACKEND_GPGME
28
29 #include "crypt-mod.h"
30 #include "crypt-gpgme.h"
31
32 static void crypt_mod_smime_init (void)
33 {
34   smime_gpgme_init ();
35 }
36
37 static void crypt_mod_smime_void_passphrase (void)
38 {
39   /* Handled by gpg-agent.  */
40 }
41
42 static int crypt_mod_smime_valid_passphrase (void)
43 {
44   /* Handled by gpg-agent.  */
45   return 1;
46 }
47
48 static int crypt_mod_smime_decrypt_mime (FILE *a, FILE **b, BODY *c, BODY **d)
49 {
50   return smime_gpgme_decrypt_mime (a, b, c, d);
51 }
52
53 static void crypt_mod_smime_application_handler (BODY *m, STATE *s)
54 {
55   smime_gpgme_application_handler (m, s);
56 }
57
58 static char *crypt_mod_smime_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc)
59 {
60   return smime_gpgme_findkeys (to, cc, bcc);
61 }
62
63 static BODY *crypt_mod_smime_sign_message (BODY *a)
64 {
65   return smime_gpgme_sign_message (a);
66 }
67
68 static int crypt_mod_smime_verify_one (BODY *sigbdy, STATE *s, const char *tempf)
69 {
70   return smime_gpgme_verify_one (sigbdy, s, tempf);
71 }
72
73 static int crypt_mod_smime_send_menu (HEADER *msg, int *redraw)
74 {
75   return smime_gpgme_send_menu (msg, redraw);
76 }
77
78 static BODY *crypt_mod_smime_build_smime_entity (BODY *a, char *certlist)
79 {
80   return smime_gpgme_build_smime_entity (a, certlist);
81 }
82
83 static int crypt_mod_smime_verify_sender (HEADER *h)
84 {
85   return smime_gpgme_verify_sender (h);
86 }
87
88 struct crypt_module_specs crypt_mod_smime_gpgme =
89   { APPLICATION_SMIME,
90     {
91       crypt_mod_smime_init,
92       crypt_mod_smime_void_passphrase,
93       crypt_mod_smime_valid_passphrase,
94       crypt_mod_smime_decrypt_mime,
95       crypt_mod_smime_application_handler,
96       NULL,                     /* encrypted_handler */
97       crypt_mod_smime_findkeys,
98       crypt_mod_smime_sign_message,
99       crypt_mod_smime_verify_one,
100       crypt_mod_smime_send_menu,
101
102       NULL,                     /* pgp_encrypt_message */
103       NULL,                     /* pgp_make_key_attachment */
104       NULL,                     /* pgp_check_traditional */
105       NULL,                     /* pgp_traditional_encryptsign */
106       NULL,                     /* pgp_invoke_getkeys */
107       NULL,                     /* pgp_invoke_import */
108       NULL,                     /* pgp_extract_keys_from_attachment_list */
109       
110       NULL,                     /* smime_getkeys */
111       crypt_mod_smime_verify_sender,
112       crypt_mod_smime_build_smime_entity,
113       NULL,                     /* smime_invoke_import */
114     }
115   };
116
117 #endif