Home
last modified time | relevance | path

Searched refs:numprompts (Results 1 – 6 of 6) sorted by relevance

/external/openssh/
Dauth-chall.c49 u_int i, numprompts; in get_challenge() local
63 &numprompts, &prompts, &echo_on)) { in get_challenge()
68 if (numprompts < 1) in get_challenge()
71 for (i = 0; i < numprompts; i++) in get_challenge()
84 u_int i, numprompts, *echo_on; in verify_response() local
98 &numprompts, &prompts, &echo_on)) != 0) in verify_response()
100 if (numprompts == 0 && in verify_response()
104 for (i = 0; i < numprompts; i++) in verify_response()
Dauth-skey.c53 u_int* numprompts, char ***prompts, u_int **echo_on) in skey_query() argument
65 *numprompts = 1; in skey_query()
66 *prompts = xcalloc(*numprompts, sizeof(char *)); in skey_query()
67 *echo_on = xcalloc(*numprompts, sizeof(u_int)); in skey_query()
Dauth-bsdauth.c52 u_int *numprompts, char ***prompts, u_int **echo_on) in bsdauth_query() argument
82 *numprompts = 1; in bsdauth_query()
83 *prompts = xcalloc(*numprompts, sizeof(char *)); in bsdauth_query()
84 *echo_on = xcalloc(*numprompts, sizeof(u_int)); in bsdauth_query()
Dmonitor_wrap.c937 mm_chall_setup(char **name, char **infotxt, u_int *numprompts, in mm_chall_setup() argument
942 *numprompts = 1; in mm_chall_setup()
943 *prompts = xcalloc(*numprompts, sizeof(char *)); in mm_chall_setup()
944 *echo_on = xcalloc(*numprompts, sizeof(u_int)); in mm_chall_setup()
950 u_int *numprompts, char ***prompts, u_int **echo_on) in mm_bsdauth_query() argument
974 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on); in mm_bsdauth_query()
1008 u_int *numprompts, char ***prompts, u_int **echo_on) in mm_skey_query() argument
1034 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on); in mm_skey_query()
Dauth.h102 u_int *numprompts, char ***prompts, u_int **echo_on);
Dmonitor.c882 u_int numprompts; in mm_answer_bsdauthquery() local
887 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts, in mm_answer_bsdauthquery()