Improved detection of bad/invalid signer keys.
[gnupg.git] / common / get-passphrase.h
blob603ac81b93fa2b4ae3585f5f9b1c33d1d83c9be3
1 /* get-passphrase.h - Definitions to ask for a passphrase via the agent.
2 * Copyright (C) 2009 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef GNUPG_COMMON_GET_PASSPHRASE_H
21 #define GNUPG_COMMON_GET_PASSPHRASE_H
23 #include "session-env.h"
25 void gnupg_prepare_get_passphrase (gpg_err_source_t errsource,
26 int verbosity,
27 const char *homedir,
28 const char *agent_program,
29 const char *opt_lc_ctype,
30 const char *opt_lc_messages,
31 session_env_t session_env);
33 gpg_error_t gnupg_get_passphrase (const char *cache_id,
34 const char *err_msg,
35 const char *prompt,
36 const char *desc_msg,
37 int repeat,
38 int check_quality,
39 int use_secmem,
40 char **r_passphrase);
42 gpg_error_t gnupg_clear_passphrase (const char *cache_id);
45 #endif /*GNUPG_COMMON_GET_PASSPHRASE_H*/