HomeSort by relevance Sort by last modified time
    Searched refs:ntlm (Results 1 - 23 of 23) sorted by null

  /external/curl/lib/vauth/
ntlm_sspi.c 43 * This is used to evaluate if NTLM is supported.
47 * Returns TRUE if NTLM is supported by Windows SSPI.
54 /* Query the security package for NTLM */
64 * This is used to generate an already encoded NTLM type-1 message ready for
71 * ntlm [in/out] - The NTLM data struct being used and modified.
80 struct ntlmdata *ntlm,
91 Curl_auth_ntlm_cleanup(ntlm);
93 /* Query the security package for NTLM */
99 ntlm->token_max = SecurityPackage->cbMaxToken
    [all...]
ntlm.c 28 * NTLM details:
30 * http://davenport.sourceforge.net/ntlm.html
31 * https://www.innovation.ch/java/ntlm.html
53 #include "vauth/ntlm.h"
155 * This is used to decode the "target info" in the NTLM type-2 message
163 * ntlm [in/out] - The NTLM data struct being used and modified.
170 struct ntlmdata *ntlm)
185 infof(data, "NTLM handshake failure (bad type-2 message). "
190 ntlm->target_info = malloc(target_info_len)
    [all...]
vauth.h 118 /* This is used to evaluate if NTLM is supported */
121 /* This is used to generate a base64 encoded NTLM type-1 message */
124 struct ntlmdata *ntlm,
128 /* This is used to decode a base64 encoded NTLM type-2 message */
131 struct ntlmdata *ntlm);
133 /* This is used to generate a base64 encoded NTLM type-3 message */
137 struct ntlmdata *ntlm,
140 /* This is used to clean up the NTLM specific data */
141 void Curl_auth_ntlm_cleanup(struct ntlmdata *ntlm);
  /external/curl/docs/cmdline-opts/
ntlm-wb.d 1 Long: ntlm-wb
2 Help: Use HTTP NTLM authentication with winbind
4 See-also: ntlm proxy-ntlm
6 Enables NTLM much in the style --ntlm does, but hand over the authentication
ntlm.d 1 Long: ntlm
2 Help: Use HTTP NTLM authentication
4 See-also: proxy-ntlm
8 Enables NTLM authentication. The NTLM authentication method was designed by
12 everyone who uses NTLM to switch to a public and documented authentication
15 If you want to enable NTLM for your proxy authentication, then use
16 --proxy-ntlm.
basic.d 9 --ntlm, --digest, or --negotiate).
digest.d 4 Mutexed: basic ntlm negotiate
negotiate.d 4 See-also: basic ntlm anyauth proxy-negotiate
anyauth.d 10 method, which you can do with --basic, --digest, --ntlm, and --negotiate.
  /external/curl/lib/
http_ntlm.c 28 * NTLM details:
30 * http://davenport.sourceforge.net/ntlm.html
31 * https://www.innovation.ch/java/ntlm.html
67 struct ntlmdata *ntlm; local
70 ntlm = proxy ? &conn->proxyntlm : &conn->ntlm;
72 if(checkprefix("NTLM", header)) {
73 header += strlen("NTLM");
79 result = Curl_auth_decode_ntlm_type2_message(conn->data, header, ntlm);
83 ntlm->state = NTLMSTATE_TYPE2; /* We got a type-2 message *
126 struct ntlmdata *ntlm; local
    [all...]
curl_ntlm_core.h 89 struct ntlmdata *ntlm,
curl_ntlm_wb.c 29 * NTLM details:
31 * http://davenport.sourceforge.net/ntlm.html
32 * https://www.innovation.ch/java/ntlm.html
50 #include "vauth/ntlm.h"
169 NTLM challenge/response which only accepts commands and output
320 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3);
329 * This is for creating ntlm header output by delegating challenge/response
341 struct ntlmdata *ntlm; local
353 ntlm = &conn->proxyntlm;
359 ntlm = &conn->ntlm
    [all...]
curl_ntlm_core.c 28 * NTLM details:
30 * http://davenport.sourceforge.net/ntlm.html
31 * https://www.innovation.ch/java/ntlm.html
103 # error "Can't compile NTLM support without a crypto library."
122 #define NTLMv2_BLOB_LEN (44 -16 + ntlm->target_info_len + 4)
621 /* This creates the NTLMv2 hash by using NTLM hash as the key and Unicode
651 * This creates the NTLMv2 response as set in the ntlm type-3 message.
657 * ntlm [in] - The ntlm data struct being used to read TargetInfo
667 struct ntlmdata *ntlm,
    [all...]
curl_sasl.c 64 { "NTLM", 4, SASL_MECH_NTLM },
91 /* Cleanup the NTLM structure */
93 Curl_auth_ntlm_cleanup(&conn->ntlm);
209 "NTLM",
335 &conn->ntlm, &resp, &len);
494 &conn->ntlm, &resp, &len);
501 &conn->ntlm);
504 conn->passwd, &conn->ntlm,
urldata.h 455 /* Struct used for NTLM challenge-response authentication */
471 void *target_info; /* TargetInfo received in the ntlm type-2 message */
1069 struct ntlmdata ntlm; \/* NTLM differs from other authentication schemes member in struct:connectdata
    [all...]
http.c 360 * If we are doing NTLM {
440 (conn->ntlm.state != NTLMSTATE_NONE) ||
442 /* The NTLM-negotiation has started *OR* there is just a little (<2K)
458 infof(data, "NTLM send, close instead of sending %"
464 /* This is not NTLM or many bytes left to send: close */
597 auth = "NTLM";
814 /* NTLM support requires the SSL crypto libs */
815 if(checkprefix("NTLM", auth)) {
824 /* NTLM authentication is picked and activated */
839 if(checkprefix("NTLM", auth))
    [all...]
multi.c 607 place in a NTLM authentication handshake
622 && !(conn->ntlm.state == NTLMSTATE_TYPE2 ||
    [all...]
url.c     [all...]
  /external/curl/packages/vms/
gnv_curl_configure.sh 44 --disable-libtool-lock --with-gssapi --disable-ntlm-wb \
  /external/curl/
androidconfigure 48 --disable-ntlm-wb \
  /external/curl/tests/server/
rtspd.c 106 bool ntlm; /* Authorization ntlm header found */ member in struct:httprequest
653 else if(!req->ntlm &&
654 strstr(req->reqbuf, "Authorization: NTLM TlRMTVNTUAAD")) {
655 /* If the client is passing this type-3 NTLM header */
657 req->ntlm = TRUE; /* NTLM found */
658 logmsg("Received NTLM type-3, sending back data %ld", req->partno);
663 else if(!req->ntlm &&
664 strstr(req->reqbuf, "Authorization: NTLM TlRMTVNTUAAB"))
    [all...]
sws.c 108 bool ntlm; /* Authorization ntlm header found */ member in struct:httprequest
171 proper point - like with NTLM */
760 else if(!req->ntlm &&
761 strstr(req->reqbuf, "Authorization: NTLM TlRMTVNTUAAD")) {
762 /* If the client is passing this type-3 NTLM header */
764 req->ntlm = TRUE; /* NTLM found */
765 logmsg("Received NTLM type-3, sending back data %ld", req->partno);
770 else if(!req->ntlm &
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/
http-builder-0.7.2.jar 

Completed in 189 milliseconds