Lines Matching defs:ntlmbuf
361 char *ntlmbuf;
378 ntlmbuf = aprintf(NTLMSSP_SIGNATURE "%c"
410 if(!ntlmbuf)
438 Curl_bufref_set(out, ntlmbuf, size, curl_free);
484 unsigned char ntlmbuf[NTLM_BUFSIZE];
608 size = msnprintf((char *)ntlmbuf, NTLM_BUFSIZE,
690 memcpy(&ntlmbuf[size], lmresp, 0x18);
696 ntlm_print_hex(stderr, (char *)&ntlmbuf[lmrespoff], 0x18);
700 if(ntresplen + size > sizeof(ntlmbuf)) {
705 memcpy(&ntlmbuf[size], ptr_ntresp, ntresplen);
710 ntlm_print_hex(stderr, (char *)&ntlmbuf[ntrespoff], ntresplen);
731 unicodecpy(&ntlmbuf[size], domain, domlen / 2);
733 memcpy(&ntlmbuf[size], domain, domlen);
739 unicodecpy(&ntlmbuf[size], user, userlen / 2);
741 memcpy(&ntlmbuf[size], user, userlen);
747 unicodecpy(&ntlmbuf[size], host, hostlen / 2);
749 memcpy(&ntlmbuf[size], host, hostlen);
754 result = Curl_bufref_memdup(out, ntlmbuf, size);