X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_crypt.h;h=8d64d35bfa68d856e10fdcde44d20a836e5527ac;hp=5e3f6174ae99da957c5756542a57b3979047a963;hb=75291cb065ec25499a125665cba1123ee4c64abf;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/mutt_crypt.h b/mutt_crypt.h index 5e3f617..8d64d35 100644 --- a/mutt_crypt.h +++ b/mutt_crypt.h @@ -1,20 +1,11 @@ /* + * Copyright notice from original mutt: * Copyright (C) 2003 Werner Koch * Copyright (C) 2004 g10code 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. */ /* @@ -26,6 +17,8 @@ #define MUTT_CRYPT_H #include "mutt.h" /* Need this to declare BODY, ADDRESS. STATE etc. */ +#include "state.h" + /* FIXME: They should be pointer to anonymous structures for better information hiding. */ @@ -116,7 +109,7 @@ int mutt_is_application_pgp (BODY *); int mutt_is_application_smime (BODY *); -void mutt_signed_handler (BODY *, STATE *); +int mutt_signed_handler (BODY *, STATE *); int mutt_parse_crypt_hdr (char *, int); @@ -128,7 +121,7 @@ void convert_to_7bit (BODY *); /*-- crypt.c --*/ /* Print the current time. */ -void crypt_current_time (STATE * s, char *app_name); +void crypt_current_time (STATE * s, const char *app_name); /* Check out the type of encryption used and set the cached status values if there are any. */ @@ -170,10 +163,10 @@ int crypt_pgp_valid_passphrase (void); int crypt_pgp_decrypt_mime (FILE * a, FILE ** b, BODY * c, BODY ** d); /* MIME handler for the application/pgp content-type. */ -void crypt_pgp_application_pgp_handler (BODY * m, STATE * s); +int crypt_pgp_application_pgp_handler (BODY * m, STATE * s); /* MIME handler for an PGP/MIME encrypted message. */ -void crypt_pgp_encrypted_handler (BODY * a, STATE * s); +int crypt_pgp_encrypted_handler (BODY * a, STATE * s); /* fixme: needs documentation. */ void crypt_pgp_invoke_getkeys (ADDRESS * addr); @@ -233,7 +226,7 @@ int crypt_smime_valid_passphrase (void); int crypt_smime_decrypt_mime (FILE * a, FILE ** b, BODY * c, BODY ** d); /* MIME handler for the application/smime content-type. */ -void crypt_smime_application_smime_handler (BODY * m, STATE * s); +int crypt_smime_application_smime_handler (BODY * m, STATE * s); /* fixme: Needs documentation. */ void crypt_smime_getkeys (ENVELOPE * env);