Lines Matching full:challenge
91 #define RSA_ENCPWD_CHALLENGEKEY 3 /* Challenge and public key */
102 static char challenge[CHAL_SZ]; variable
218 r = accept_rsa_encpwd(&auth, key, challenge,
244 * the challenge, and verify it when the response comes back.
252 sprintf(challenge, "%x", now);
253 challenge_len = strlen(challenge);
255 strcpy(challenge, "randchal");
286 memmove(ptr, challenge, challenge_len);
334 * Verify that the response to the challenge is correct.
346 memmove(challenge, ptr, challenge_len);
358 Challenge = challenge;
359 r = init_rsa_encpwd(&token, user_passwd, challenge, challenge_len, pubkey);