Displaying 1 result from an estimated 1 matches for "uuencode_binary".
2001 Oct 11
0
NTLM HTTP Authentication - distinguishing between win9x and NT and 2000
...f machine it is/ whether to treat the
structure like a win98 or a winNT struct?
Here is the code that is executed dependent on if it thinks the data came
from a win9x or NT client:
-----------------
if (win9x==0) {
ntlm_encode_msg2(ntlm_connection->nonce, &msg);
challenge = uuencode_binary(r->pool, (unsigned char *) &msg,
sizeof(msg));
}
else {
ntlm_encode_msg2_win9x(ntlm_connection->nonce,
&msg_win9x,crec->ntlm_domain);
challenge = uuencode_binary(r->pool, (unsigned char *) &msg_win9x,
NTLM_MSG2_WIN9X_FIXED_SIZE+strlen(crec->ntlm_domain))...