diff options
Diffstat (limited to '')
-rw-r--r-- | gpgme/engine-gpgsm.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/gpgme/engine-gpgsm.h b/gpgme/engine-gpgsm.h deleted file mode 100644 index 9b6cf926..00000000 --- a/gpgme/engine-gpgsm.h +++ /dev/null @@ -1,67 +0,0 @@ -/* engine-gpgsm.h - GPGME GpgSM engine calling functions - Copyright (C) 2000 Werner Koch (dd9jn) - Copyright (C) 2001, 2002 g10 Code GmbH - - This file is part of GPGME. - - GPGME 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. - - GPGME 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 GPGME; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - -#ifndef ENGINE_GPGSM_H -#define ENGINE_GPGSM_H - -#include "types.h" - -const char *_gpgme_gpgsm_get_version (void); -GpgmeError _gpgme_gpgsm_check_version (void); - -GpgmeError _gpgme_gpgsm_new (GpgsmObject *r_gpg); -void _gpgme_gpgsm_release (GpgsmObject gpg); - -void _gpgme_gpgsm_set_status_handler (GpgsmObject gpgsm, - GpgmeStatusHandler fnc, void *fnc_value); -void _gpgme_gpgsm_set_colon_line_handler (GpgsmObject gpgsm, - GpgmeColonLineHandler fnc, void *fnc_value) ; -GpgmeError _gpgme_gpgsm_op_decrypt (GpgsmObject gpgsm, GpgmeData ciph, - GpgmeData plain); -GpgmeError _gpgme_gpgsm_op_delete (GpgsmObject gpgsm, GpgmeKey key, - int allow_secret); -GpgmeError _gpgme_gpgsm_op_encrypt (GpgsmObject gpgsm, GpgmeRecipients recp, - GpgmeData plain, GpgmeData ciph, - int use_armor); -GpgmeError _gpgme_gpgsm_op_export (GpgsmObject gpgsm, GpgmeRecipients recp, - GpgmeData keydata, int use_armor); -GpgmeError _gpgme_gpgsm_op_genkey (GpgsmObject gpgsm, GpgmeData help_data, - int use_armor, GpgmeData pubkey, - GpgmeData seckey); -GpgmeError _gpgme_gpgsm_op_import (GpgsmObject gpgsm, GpgmeData keydata); -GpgmeError _gpgme_gpgsm_op_keylist (GpgsmObject gpgsm, const char *pattern, - int secret_only, int keylist_mode); -GpgmeError _gpgme_gpgsm_op_keylist_ext (GpgsmObject gpgsm, - const char *pattern[], - int secret_only, int reserved, - int keylist_mode); -GpgmeError _gpgme_gpgsm_op_sign (GpgsmObject gpgsm, GpgmeData in, - GpgmeData out, - GpgmeSigMode mode, int use_armor, - int use_textmode, int include_certs, - GpgmeCtx ctx /* FIXME */); -GpgmeError _gpgme_gpgsm_op_trustlist (GpgsmObject gpgsm, const char *pattern); -GpgmeError _gpgme_gpgsm_op_verify (GpgsmObject gpgsm, GpgmeData sig, - GpgmeData signed_text, GpgmeData plaintext); -GpgmeError _gpgme_gpgsm_start (GpgsmObject gpgsm, void *opaque); -void _gpgme_gpgsm_set_io_cbs (GpgsmObject gpgsm, struct GpgmeIOCbs *io_cbs); -void _gpgme_gpgsm_io_event (GpgsmObject gpgsm, GpgmeEventIO type, void *type_data); - -#endif /* ENGINE_GPGSM_H */ |