1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/**
* @file
* Wrapper around crypto functions
*
* @authors
* Copyright (C) 2017-2023 Richard Russon <rich@flatcap.org>
* Copyright (C) 2019 Pietro Cerutti <gahr@gahr.ch>
*
* @copyright
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef MUTT_NCRYPT_CRYPTGLUE_H
#define MUTT_NCRYPT_CRYPTGLUE_H
#include <stdbool.h>
#include "lib.h"
struct AddressList;
struct Body;
struct Email;
struct State;
struct Body *crypt_pgp_encrypt_message(struct Email *e, struct Body *b, char *keylist, int sign, const struct AddressList *from);
char * crypt_pgp_find_keys(struct AddressList *al, bool oppenc_mode);
void crypt_pgp_invoke_import(const char *fname);
void crypt_pgp_set_sender(const char *sender);
struct Body *crypt_pgp_sign_message(struct Body *b, const struct AddressList *from);
struct Body *crypt_pgp_traditional_encryptsign(struct Body *b, SecurityFlags flags, char *keylist);
bool crypt_pgp_valid_passphrase(void);
int crypt_pgp_verify_one(struct Body *b, struct State *state, const char *tempf);
void crypt_pgp_void_passphrase(void);
struct Body *crypt_smime_build_smime_entity(struct Body *b, char *certlist);
char * crypt_smime_find_keys(struct AddressList *al, bool oppenc_mode);
void crypt_smime_invoke_import(const char *infile, const char *mailbox);
void crypt_smime_set_sender(const char *sender);
struct Body *crypt_smime_sign_message(struct Body *b, const struct AddressList *from);
bool crypt_smime_valid_passphrase(void);
int crypt_smime_verify_one(struct Body *b, struct State *state, const char *tempf);
void crypt_smime_void_passphrase(void);
#endif /* MUTT_NCRYPT_CRYPTGLUE_H */
|