pwmc: Reset filename upon .open failure.
[libpwmd.git] / src / pinentry.h
blob543d11b5c1c64ea3f74ffcd84ce1a112d0d9e1c5
1 /*
2 Copyright (C) 2006-2016 Ben Kibbey <bjk@luxsci.net>
4 This file is part of libpwmd.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 USA
21 #ifndef PINENTRY_H
22 #define PINENTRY_H
24 #include "types.h"
26 void _pinentry_disconnect (pwm_t * pwm);
27 gpg_error_t _getpin (pwm_t * pwm, char **result, size_t *,
28 pwmd_pinentry_t which);
29 gpg_error_t _do_save_getpin (pwm_t * pwm, char **password, size_t *);
30 gpg_error_t _pinentry_open (pwm_t * pwm, const char *filename,
31 char **password, size_t *);
32 gpg_error_t _pwmd_getpin (pwm_t * pwm, const char *filename, char **result,
33 size_t * len, pwmd_pinentry_t which);
35 #endif