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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/**
* @file
* Wrappers for calls to CLI SMIME
*
* @authors
* Copyright (C) 2017-2024 Richard Russon <rich@flatcap.org>
*
* @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/>.
*/
/**
* @page crypt_crypt_mod_smime Wrappers for calls to CLI SMIME
*
* Wrappers for calls to CLI SMIME
*/
#include "config.h"
#include <stdio.h>
#include "lib.h"
#include "crypt_mod.h"
#ifdef CRYPT_BACKEND_CLASSIC_SMIME
#include "smime.h"
#endif
/**
* smime_class_init - Initialise smime - Implements CryptModuleSpecs::init() - @ingroup crypto_init
*/
static void smime_class_init(void)
{
smime_init();
}
/**
* smime_class_cleanup - Clean up smime - Implements ::CryptModuleSpecs::cleanup() - @ingroup crypto_cleanup
*/
static void smime_class_cleanup(void)
{
smime_cleanup();
}
/**
* CryptModSmimeClassic - CLI SMIME - Implements ::CryptModuleSpecs - @ingroup crypto_api
*/
const struct CryptModuleSpecs CryptModSmimeClassic = {
// clang-format off
APPLICATION_SMIME,
smime_class_init,
smime_class_cleanup,
smime_class_void_passphrase,
smime_class_valid_passphrase,
smime_class_decrypt_mime,
smime_class_application_handler,
NULL, /* encrypted_handler */
smime_class_find_keys,
smime_class_sign_message,
smime_class_verify_one,
smime_class_send_menu,
NULL, /* set_sender */
NULL, /* pgp_encrypt_message */
NULL, /* pgp_make_key_attachment */
NULL, /* pgp_check_traditional */
NULL, /* pgp_traditional_encryptsign */
NULL, /* pgp_invoke_getkeys */
NULL, /* pgp_invoke_import */
NULL, /* pgp_extract_key_from_attachment */
smime_class_getkeys,
smime_class_verify_sender,
smime_class_build_smime_entity,
smime_class_invoke_import,
// clang-format on
};
|