X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=crypt-gpgme.h;h=c630053b1b10a914096743cffc262e665d5a8bf2;hp=49013515d82611bd7c71d674b2365ecd44307827;hb=c228dbc78fa40b09da8bcf5c1650d6006c389ce4;hpb=e43d5aea488f4e6d39b1b193a5af607fd034ca79 diff --git a/crypt-gpgme.h b/crypt-gpgme.h index 4901351..c630053 100644 --- a/crypt-gpgme.h +++ b/crypt-gpgme.h @@ -1,19 +1,10 @@ -/* +/* + * Copyright notice from original mutt: * Copyright (C) 2004 g10 Code GmbH * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. */ #ifndef CRYPT_GPGME_H @@ -24,30 +15,34 @@ void pgp_gpgme_init (void); void smime_gpgme_init (void); -char *pgp_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc); -char *smime_gpgme_findkeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc); +char *pgp_gpgme_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc); +char *smime_gpgme_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc); -BODY *pgp_gpgme_encrypt_message (BODY *a, char *keylist, int sign); -BODY *smime_gpgme_build_smime_entity (BODY *a, char *keylist); +BODY *pgp_gpgme_encrypt_message (BODY * a, char *keylist, int sign); +BODY *smime_gpgme_build_smime_entity (BODY * a, char *keylist); -int pgp_gpgme_decrypt_mime (FILE *fpin, FILE **fpout, BODY *b, BODY **cur); -int smime_gpgme_decrypt_mime (FILE *fpin, FILE **fpout, BODY *b, BODY **cur); +int pgp_gpgme_decrypt_mime (FILE * fpin, FILE ** fpout, BODY * b, + BODY ** cur); +int smime_gpgme_decrypt_mime (FILE * fpin, FILE ** fpout, BODY * b, + BODY ** cur); -int pgp_gpgme_check_traditional (FILE *fp, BODY *b, int tagged_only); +int pgp_gpgme_check_traditional (FILE * fp, BODY * b, int tagged_only); -void pgp_gpgme_application_handler (BODY *m, STATE *s); -void smime_gpgme_application_handler (BODY *a, STATE *s); -void pgp_gpgme_encrypted_handler (BODY *a, STATE *s); +int pgp_gpgme_application_handler (BODY * m, STATE * s); +int smime_gpgme_application_handler (BODY * a, STATE * s); +int pgp_gpgme_encrypted_handler (BODY * a, STATE * s); BODY *pgp_gpgme_make_key_attachment (char *tempf); -BODY *pgp_gpgme_sign_message (BODY *a); -BODY *smime_gpgme_sign_message (BODY *a); +BODY *pgp_gpgme_sign_message (BODY * a); +BODY *smime_gpgme_sign_message (BODY * a); -int pgp_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile); -int smime_gpgme_verify_one (BODY *sigbdy, STATE *s, const char *tempfile); +int pgp_gpgme_verify_one (BODY * sigbdy, STATE * s, const char *tempfile); +int smime_gpgme_verify_one (BODY * sigbdy, STATE * s, const char *tempfile); -int pgp_gpgme_send_menu (HEADER *msg, int *redraw); -int smime_gpgme_send_menu (HEADER *msg, int *redraw); +int smime_gpgme_verify_sender (HEADER* h); + +int pgp_gpgme_send_menu (HEADER * msg, int *redraw); +int smime_gpgme_send_menu (HEADER * msg, int *redraw); #endif