Reshuffle the prompter types, remove the hidden field.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17551 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -63,14 +63,13 @@ struct hx509_cert_attribute_data {
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
HX509_PROMPT_TYPE_PASSWORD = 0x1,
|
||||
HX509_PROMPT_TYPE_QUESTION = 0x2,
|
||||
HX509_PROMPT_TYPE_CONFIRMATION = 0x4
|
||||
HX509_PROMPT_TYPE_PASSWORD = 0x1, /* password, hidden */
|
||||
HX509_PROMPT_TYPE_QUESTION = 0x2, /* question, not hidden */
|
||||
HX509_PROMPT_TYPE_INFO = 0x4 /* infomation, reply doesn't matter */
|
||||
} hx509_prompt_type;
|
||||
|
||||
typedef struct hx509_prompt {
|
||||
const char *prompt;
|
||||
int hidden;
|
||||
hx509_prompt_type type;
|
||||
heim_octet_string reply;
|
||||
} hx509_prompt;
|
||||
|
Reference in New Issue
Block a user