]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/ask-password-api.h
Merge pull request #2828 from mineo/run-help
[thirdparty/systemd.git] / src / shared / ask-password-api.h
CommitLineData
c2f1db8f 1#pragma once
7f4e0805
LP
2
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
7f4e0805
LP
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 16 Lesser General Public License for more details.
7f4e0805 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
7f4e0805
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
3f6fd1ba
LP
22#include <stdbool.h>
23
24#include "time-util.h"
7f4e0805 25
e287086b
LP
26typedef enum AskPasswordFlags {
27 ASK_PASSWORD_ACCEPT_CACHED = 1,
28 ASK_PASSWORD_PUSH_CACHE = 2,
29 ASK_PASSWORD_ECHO = 4, /* show the password literally while reading, instead of "*" */
30 ASK_PASSWORD_SILENT = 8, /* do no show any password at all while reading */
31 ASK_PASSWORD_NO_TTY = 16,
32 ASK_PASSWORD_NO_AGENT = 32,
33} AskPasswordFlags;
34
35int ask_password_tty(const char *message, const char *keyname, usec_t until, AskPasswordFlags flags, const char *flag_file, char **ret);
36int ask_password_agent(const char *message, const char *icon, const char *id, const char *keyname, usec_t until, AskPasswordFlags flag, char ***ret);
37int ask_password_keyring(const char *keyname, AskPasswordFlags flags, char ***ret);
38int ask_password_auto(const char *message, const char *icon, const char *id, const char *keyname, usec_t until, AskPasswordFlags flag, char ***ret);