Add pwmd_deinit().
[libpwmd.git] / src / pinentry.h
blob0eb1e93c646c224fd87db6fbc98ba0774004643e
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 Ben Kibbey <bjk@luxsci.net>
6 This file is part of libpwmd.
8 Libpwmd is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
13 Libpwmd is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Libpwmd. If not, see <http://www.gnu.org/licenses/>.
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 *, pwmd_pinentry_t which);
28 gpg_error_t _do_save_getpin(pwm_t *pwm, char **password, size_t *);
29 gpg_error_t _pinentry_open(pwm_t *pwm, const char *filename, char **password,
30 size_t *);
31 gpg_error_t _pwmd_getpin(pwm_t *pwm, const char *filename, char **result,
32 size_t *len, pwmd_pinentry_t which);
34 #endif