HomeSort by relevance Sort by last modified time
    Searched full:numprompts (Results 1 - 9 of 9) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthInfoRequest.java 22 int numPrompts;
43 numPrompts = tr.readUINT32();
45 prompt = new String[numPrompts];
46 echo = new boolean[numPrompts];
48 for (int i = 0; i < numPrompts; i++)
80 return numPrompts;
  /external/openssh/
auth-chall.c 49 u_int i, numprompts; local
63 &numprompts, &prompts, &echo_on)) {
68 if (numprompts < 1)
69 fatal("get_challenge: numprompts < 1");
71 for (i = 0; i < numprompts; i++)
84 u_int i, numprompts, *echo_on; local
98 &numprompts, &prompts, &echo_on)) != 0)
100 if (numprompts == 0 &&
104 for (i = 0; i < numprompts; i++)
auth-skey.c 53 u_int* numprompts, char ***prompts, u_int **echo_on)
65 *numprompts = 1;
66 *prompts = xcalloc(*numprompts, sizeof(char *));
67 *echo_on = xcalloc(*numprompts, sizeof(u_int));
auth-bsdauth.c 52 u_int *numprompts, char ***prompts, u_int **echo_on)
82 *numprompts = 1;
83 *prompts = xcalloc(*numprompts, sizeof(char *));
84 *echo_on = xcalloc(*numprompts, sizeof(u_int));
monitor_wrap.c 937 mm_chall_setup(char **name, char **infotxt, u_int *numprompts,
942 *numprompts = 1;
943 *prompts = xcalloc(*numprompts, sizeof(char *));
944 *echo_on = xcalloc(*numprompts, sizeof(u_int));
950 u_int *numprompts, char ***prompts, u_int **echo_on)
974 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
1008 u_int *numprompts, char ***prompts, u_int **echo_on)
1034 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on);
    [all...]
auth.h 102 u_int *numprompts, char ***prompts, u_int **echo_on);
monitor.c 882 u_int numprompts; local
887 success = bsdauth_query(authctxt, &name, &infotxt, &numprompts,
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
InteractiveCallback.java 44 * @param numPrompts
48 * an array (length <code>numPrompts</code>) of Strings
50 * an array (length <code>numPrompts</code>) of booleans. For
54 * <code>numPrompts</code>.
56 public String[] replyToChallenge(String name, String instruction, int numPrompts, String[] prompt, boolean[] echo)
  /external/ganymed-ssh2/examples/
SwingShell.java 466 public String[] replyToChallenge(String name, String instruction, int numPrompts, String[] prompt,
469 String[] result = new String[numPrompts];
471 for (int i = 0; i < numPrompts; i++)

Completed in 631 milliseconds