mutt stable branch with some hacks
at master 70 lines 1.9 kB view raw
1/* 2 * Copyright (C) 2001-2002 Oliver Ehli <elmy@acm.org> 3 * Copyright (C) 2004 g10 Code GmbH 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 18 */ 19 20 21#ifdef CRYPT_BACKEND_CLASSIC_SMIME 22 23#include "mutt_crypt.h" 24 25typedef struct smime_key { 26 char *email; 27 char *hash; 28 char *label; 29 char *issuer; 30 char trust; /* i=Invalid r=revoked e=expired u=unverified v=verified t=trusted */ 31 int flags; 32 struct smime_key *next; 33} smime_key_t; 34 35 36void smime_free_key (smime_key_t **); 37 38void smime_void_passphrase (void); 39int smime_valid_passphrase (void); 40 41int smime_decrypt_mime (FILE *, FILE **, BODY *, BODY **); 42 43int smime_application_smime_handler (BODY *, STATE *); 44 45 46BODY* smime_sign_message (BODY *); 47 48BODY* smime_build_smime_entity (BODY *, char *); 49 50int smime_verify_one(BODY *, STATE *, const char *); 51 52 53int smime_verify_sender(HEADER *); 54 55 56char* smime_get_field_from_db (char *, char *, short, short); 57 58void smime_getkeys (ENVELOPE *); 59 60smime_key_t *smime_ask_for_key(char *, short, short); 61 62char *smime_findKeys (ADDRESS *adrlist, int oppenc_mode); 63 64void smime_invoke_import (char *, char *); 65 66int smime_send_menu (HEADER *msg, int *redraw); 67 68#endif 69 70