Artifact dc7006b9f28d7ba06be38217883e428d47f57c1a2a039d87a10eb1a1517eda4a:
- File gnupg.h — part of check-in [c14cf350df] at 2014-05-15 21:36:21 on branch manualheaven — Move src and doc files to top directory (user: base@atomicules.co.uk size: 1265) [more...]
- File
src/gnupg.h
— part of check-in
[80ff0d7b69]
at
2011-01-29 22:27:43
on branch origin/tweaks
— Fixes to compiler warnings
git-svn-id: https://pwman.svn.sourceforge.net/svnroot/pwman/trunk@111 db5f1c25-4851-472e-ac1e-5437d07aece1 (user: gagravarr@users.sourceforge.net size: 1265)
/* * PWMan - password management application * * Copyright (C) 2002 Ivan Kelly <ivan@ivankelly.net> * * 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef PW_GNUPG_H #define PW_GNUPG_H #include <libxml/tree.h> #include <libxml/parser.h> void gnupg_forget_passphrase(); int gnupg_check_id(char*); void gnupg_get_id(char*); void gnupg_get_ids(char **, int); char* gnupg_get_filename(char*, char); const char* gnupg_get_passphrase(); int gnupg_read(char*, xmlDocPtr*); int gnupg_write(xmlDocPtr, char*, char*); int gnupg_write_many(xmlDocPtr, char**, int, char*); #endif