fwknop/fko/gpgme_funcs.h
Damien Stuart 0c7c255882 Add more compiler conditionals for GPGME support to fix error during compiles on systems without gpgme.
git-svn-id: file:///home/mbr/svn/fwknop/trunk@56 510a4753-2344-4c79-9c09-4d669213fbeb
2009-02-01 15:36:55 +00:00

39 lines
1.3 KiB
C

/* $Id$
*****************************************************************************
*
* File: gpgme_funcs.h
*
* Author: Damien S. Stuart
*
* Purpose: Header for the fwknop gpgme_funcs.c.
*
* License (GNU Public License):
*
* 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-1307
* USA
*
*****************************************************************************
*/
#ifndef GPGME_FUNCS_H
#define GPGME_FUNCS_H 1
#include "fko_common.h"
#include "fko.h"
int gpgme_encrypt(fko_ctx_t ctx, unsigned char *in, size_t len, const char *pw, unsigned char **out, size_t *out_len);
int gpgme_decrypt(fko_ctx_t ctx, unsigned char *in, size_t len, const char *pw, unsigned char **out, size_t *out_len);
#if HAVE_LIBGPGME
int get_gpg_key(fko_ctx_t fko_ctx, gpgme_key_t *mykey, int signer);
#endif
#endif /* GPGME_FUNCS_H */
/***EOF***/