Nico Golde:
[apps/madmutt.git] / crypt-gpgme.h
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 #ifndef CRYPT_GPGME_H
20 #define CRYPT_GPGME_H
21
22 #include "mutt_crypt.h"
23
24 void pgp_gpgme_init (void);
25 void smime_gpgme_init (void);
26
27 char *pgp_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc);
28 char *smime_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc);
29
30 BODY *pgp_gpgme_encrypt_message (BODY *a, char *keylist, int sign);
31 BODY *smime_gpgme_build_smime_entity (BODY *a, char *keylist);
32
33 int pgp_gpgme_decrypt_mime (FILE *fpin, FILE **fpout, BODY *b, BODY **cur);
34 int smime_gpgme_decrypt_mime (FILE *fpin, FILE **fpout, BODY *b, BODY **cur);
35
36 int pgp_gpgme_check_traditional (FILE *fp, BODY *b, int tagged_only);
37
38 void pgp_gpgme_application_handler (BODY *m, STATE *s);
39 void smime_gpgme_application_handler (BODY *a, STATE *s);
40 void pgp_gpgme_encrypted_handler (BODY *a, STATE *s);
41
42 BODY *pgp_gpgme_make_key_attachment (char *tempf);
43
44 BODY *pgp_gpgme_sign_message (BODY *a);
45 BODY *smime_gpgme_sign_message (BODY *a);
46
47 int pgp_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile);
48 int smime_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile);
49
50 int pgp_gpgme_send_menu (HEADER *msg, int *redraw);
51 int smime_gpgme_send_menu (HEADER *msg, int *redraw);
52
53 #endif