Home | History | Annotate | Download | only in openssh

Lines Matching refs:challenge

954 	char *challenge;
965 debug3("%s: no challenge", __func__);
970 /* Get the challenge, and format the response */
971 challenge = buffer_get_string(&m, NULL);
975 (*prompts)[0] = challenge;
977 debug3("%s: received challenge: %s", __func__, challenge);
1012 char *challenge;
1023 debug3("%s: no challenge", __func__);
1028 /* Get the challenge, and format the response */
1029 challenge = buffer_get_string(&m, NULL);
1032 debug3("%s: received challenge: %s", __func__, challenge);
1036 xasprintf(*prompts, "%s%s", challenge, SKEY_PROMPT);
1037 xfree(challenge);
1122 BIGNUM *challenge;
1128 if ((challenge = BN_new()) == NULL)
1143 buffer_get_bignum2(&m, challenge);
1146 return (challenge);