search for: octchal

Displaying 1 result from an estimated 1 matches for "octchal".

Did you mean: octal
2001 Jun 06
0
snk authentication
...; 'a') ? (tolower(c) - '0') : (tolower(c) - 'a' + 10)) + /* * Tries to authenticate with any string-based challenge/response system. * Note that the client code is not tied to s/key or TIS. @@ -624,6 +628,9 @@ char prompt[1024]; char *challenge, *response; + char *octchal, *p, *q; + + debug("Doing challenge reponse authentication."); for (i = 0; i < options.number_of_password_prompts; i++) { @@ -644,6 +651,51 @@ } challenge = packet_get_string(&clen); packet_integrity_check(payload_len, (4 + clen), type); + + if (options.snk_keyfile...