1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2006-2008 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
22 #include <sys/types.h>
28 #define _ASSUAN_ONLY_GPG_ERRORS 1
38 #define N_(msgid) gettext(msgid)
73 pinentry_status_t status
;
75 gchar key
[ASSUAN_LINELENGTH
];
80 typedef gpg_error_t (*pinentry_finalize_cb
)(assuan_context_t
, guchar
*, gboolean
);
84 pth_mutex_t status_mutex
;
89 pinentry_finalize_cb cb
;
93 pinentry_status_t status
;
105 int (*inquire_cb
)(void *data
, const char *line
);
112 guchar iv
[16]; /* FIXME: is this portable? */
121 guchar iv
[16]; /* FIXME: is this portable? */
132 file_header_v1_t fh1
;
135 } file_header_internal_t
;
137 struct client_thread_s
{
152 assuan_context_t ctx
;
154 struct pinentry_s
*pinentry
;
156 gpointer doc
; /* xmlDocPtr */
168 gboolean is_lock_cmd
;
169 inquire_status_t inquire_status
;
170 struct client_thread_s
*thd
;
173 gsize gcrykeysize
, gcryblocksize
;
178 void log_write(const gchar
*fmt
, ...);
179 gpg_error_t
send_error(assuan_context_t ctx
, gpg_error_t pwmd_errno
);
180 gpg_error_t
send_syserror(assuan_context_t ctx
, int e
);
181 gint
open_file(const gchar
*filename
, struct stat
*st
);
182 gpg_error_t
do_xml_encrypt(struct client_s
*client
, gcry_cipher_hd_t gh
,
183 const gchar
*filename
, gpointer data
, size_t insize
, guchar
*shakey
,
185 gint
get_key_file_integer(const gchar
*section
, const gchar
*what
);
186 gboolean
get_key_file_boolean(const gchar
*section
, const gchar
*what
);
187 gchar
*get_key_file_string(const gchar
*section
, const gchar
*what
);
188 gchar
*expand_homedir(gchar
*str
);
189 void free_client(struct client_s
*client
);
190 gpg_error_t
send_status(assuan_context_t ctx
, status_msg_t which
);
191 gchar
*parse_keyfile(const gchar
*filename
, gboolean cmdline
);