Nico Golde:
[apps/madmutt.git] / crypt-mod-smime-classic.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 classic smime code.
21  */
22
23 #if HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include "crypt-mod.h"
28 #include "smime.h"
29
30 static void crypt_mod_smime_void_passphrase (void)
31 {
32   smime_void_passphrase ();
33 }
34
35 static int crypt_mod_smime_valid_passphrase (void)
36 {
37   return smime_valid_passphrase ();
38 }
39
40 static int crypt_mod_smime_decrypt_mime (FILE *a, FILE **b, BODY *c, BODY **d)
41 {
42   return smime_decrypt_mime (a, b, c, d);
43 }
44 static void crypt_mod_smime_application_handler (BODY *m, STATE *s)
45 {
46   smime_application_smime_handler (m, s);
47 }
48
49 static char *crypt_mod_smime_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc)
50 {
51   return smime_findKeys (to, cc, bcc);
52 }
53
54 static BODY *crypt_mod_smime_sign_message (BODY *a)
55 {
56   return smime_sign_message (a);
57 }
58
59 static int crypt_mod_smime_verify_one (BODY *sigbdy, STATE *s, const char *tempf)
60 {
61   return smime_verify_one (sigbdy, s, tempf);
62 }
63
64 static int crypt_mod_smime_send_menu (HEADER *msg, int *redraw)
65 {
66   return smime_send_menu (msg, redraw);
67 }
68
69 static void crypt_mod_smime_getkeys (ENVELOPE *env)
70 {
71   smime_getkeys (env);
72 }
73
74 static int crypt_mod_smime_verify_sender (HEADER *h)
75 {
76   return smime_verify_sender (h);
77 }
78
79 static BODY *crypt_mod_smime_build_smime_entity (BODY *a, char *certlist)
80 {
81   return smime_build_smime_entity (a, certlist);
82 }
83
84 static void crypt_mod_smime_invoke_import (char *infile, char *mailbox)
85 {
86   smime_invoke_import (infile, mailbox);
87 }
88
89
90 struct crypt_module_specs crypt_mod_smime_classic =
91   { APPLICATION_SMIME,
92     {
93       NULL,                     /* init */
94       crypt_mod_smime_void_passphrase,
95       crypt_mod_smime_valid_passphrase,
96       crypt_mod_smime_decrypt_mime,
97       crypt_mod_smime_application_handler,
98       NULL,                     /* encrypted_handler */
99       crypt_mod_smime_findkeys,
100       crypt_mod_smime_sign_message,
101       crypt_mod_smime_verify_one,
102       crypt_mod_smime_send_menu,
103
104       NULL,                     /* pgp_encrypt_message */
105       NULL,                     /* pgp_make_key_attachment */
106       NULL,                     /* pgp_check_traditional */
107       NULL,                     /* pgp_traditional_encryptsign */
108       NULL,                     /* pgp_invoke_getkeys */
109       NULL,                     /* pgp_invoke_import */
110       NULL,                     /* pgp_extract_keys_from_attachment_list */
111       
112       crypt_mod_smime_getkeys,
113       crypt_mod_smime_verify_sender,
114       crypt_mod_smime_build_smime_entity,
115       crypt_mod_smime_invoke_import,
116     }
117   };