Andreas Krennmair:
[apps/madmutt.git] / crypt-mod-pgp-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 pgp code.
21  */
22
23 #include "crypt-mod.h"
24 #include "pgp.h"
25
26 static void crypt_mod_pgp_void_passphrase (void)
27 {
28   pgp_void_passphrase ();
29 }
30
31 static int crypt_mod_pgp_valid_passphrase (void)
32 {
33   return pgp_valid_passphrase ();
34 }
35
36 static int crypt_mod_pgp_decrypt_mime (FILE *a, FILE **b, BODY *c, BODY **d)
37 {
38   return pgp_decrypt_mime (a, b, c, d);
39 }
40 static void crypt_mod_pgp_application_handler (BODY *m, STATE *s)
41 {
42   pgp_application_pgp_handler (m, s);
43 }
44
45 static char *crypt_mod_pgp_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc)
46 {
47   return pgp_findKeys (to, cc, bcc);
48 }
49
50 static BODY *crypt_mod_pgp_sign_message (BODY *a)
51 {
52   return pgp_sign_message (a);
53 }
54
55 static int crypt_mod_pgp_verify_one (BODY *sigbdy, STATE *s, const char *tempf)
56 {
57   return pgp_verify_one (sigbdy, s, tempf);
58 }
59
60 static int crypt_mod_pgp_send_menu (HEADER *msg, int *redraw)
61 {
62   return pgp_send_menu (msg, redraw);
63 }
64
65 static BODY *crypt_mod_pgp_encrypt_message (BODY *a, char *keylist, int sign)
66 {
67   return pgp_encrypt_message (a, keylist, sign);
68 }
69
70 static BODY *crypt_mod_pgp_make_key_attachment (char *tempf)
71 {
72   return pgp_make_key_attachment (tempf);
73 }
74
75 static int crypt_mod_pgp_check_traditional (FILE *fp, BODY *b, int tagged_only)
76 {
77   return pgp_check_traditional (fp, b, tagged_only);
78 }
79
80 static BODY *crypt_mod_pgp_traditional_encryptsign (BODY *a, int flags, char *keylist)
81 {
82   return pgp_traditional_encryptsign (a, flags, keylist);
83 }
84
85 static void crypt_mod_pgp_encrypted_handler (BODY *m, STATE *s)
86 {
87   pgp_encrypted_handler (m, s);
88 }
89
90 static void crypt_mod_pgp_invoke_getkeys (ADDRESS *addr)
91 {
92   pgp_invoke_getkeys (addr);
93 }
94
95 static void crypt_mod_pgp_invoke_import (const char *fname)
96 {
97   pgp_invoke_import (fname);
98 }
99
100 static void crypt_mod_pgp_extract_keys_from_attachment_list (FILE *fp, int tag, BODY *top)
101 {
102   pgp_extract_keys_from_attachment_list (fp, tag, top);
103 }
104
105 struct crypt_module_specs crypt_mod_pgp_classic =
106   { APPLICATION_PGP,
107     {
108       NULL,                     /* init */
109       crypt_mod_pgp_void_passphrase,
110       crypt_mod_pgp_valid_passphrase,
111       crypt_mod_pgp_decrypt_mime,
112       crypt_mod_pgp_application_handler,
113       crypt_mod_pgp_encrypted_handler,
114       crypt_mod_pgp_findkeys,
115       crypt_mod_pgp_sign_message,
116       crypt_mod_pgp_verify_one,
117       crypt_mod_pgp_send_menu,
118
119       crypt_mod_pgp_encrypt_message,
120       crypt_mod_pgp_make_key_attachment,
121       crypt_mod_pgp_check_traditional,
122       crypt_mod_pgp_traditional_encryptsign,
123       crypt_mod_pgp_invoke_getkeys,
124       crypt_mod_pgp_invoke_import,
125       crypt_mod_pgp_extract_keys_from_attachment_list,
126
127       NULL,                     /* smime_getkeys */
128       NULL,                     /* smime_verify_sender */
129       NULL,                     /* smime_build_smime_entity */
130       NULL,                     /* smime_invoke_import */
131     }
132   };