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.
22 #include "mutt_crypt.h"
24 void pgp_gpgme_init (void);
25 void smime_gpgme_init (void);
27 char *pgp_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc);
28 char *smime_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc);
30 BODY *pgp_gpgme_encrypt_message (BODY *a, char *keylist, int sign);
31 BODY *smime_gpgme_build_smime_entity (BODY *a, char *keylist);
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);
36 int pgp_gpgme_check_traditional (FILE *fp, BODY *b, int tagged_only);
37 void pgp_gpgme_invoke_import (const char* fname);
39 int pgp_gpgme_application_handler (BODY *m, STATE *s);
40 int smime_gpgme_application_handler (BODY *a, STATE *s);
41 int pgp_gpgme_encrypted_handler (BODY *a, STATE *s);
43 BODY *pgp_gpgme_make_key_attachment (char *tempf);
45 BODY *pgp_gpgme_sign_message (BODY *a);
46 BODY *smime_gpgme_sign_message (BODY *a);
48 int pgp_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile);
49 int smime_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile);
51 int pgp_gpgme_send_menu (HEADER *msg, int *redraw);
52 int smime_gpgme_send_menu (HEADER *msg, int *redraw);
54 int smime_gpgme_verify_sender (HEADER *h);
56 void gpgme_set_sender (const char *sender);