contrib: Add helper to build Android dependencies.
[libpwmd.git] / src / pinentry.h
blob2122459073227e52574a4ce173dd9d9269d0bde2
1 /*
2 Copyright (C) 2006-2023 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 version 2.1 as published by the Free Software Foundation.
10 This library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
18 USA
20 #ifndef PINENTRY_H
21 #define PINENTRY_H
23 #include "types.h"
25 void _pinentry_disconnect (pwm_t * pwm);
26 gpg_error_t _getpin (pwm_t * pwm, char **result, size_t *,
27 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,
30 char **password, 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