OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ntlm
(Results
1 - 25
of
43
) sorted by null
1
2
/external/chromium/net/http/
mock_sspi_library_win.h
63
// lib.ExpectQuerySecurityPackageInfo(L"
NTLM
", ...)
65
// lib.QuerySecurityPackageInfo(L"
NTLM
", ...)
71
// lib.ExpectQuerySecurityPackageInfo(L"
NTLM
", ...)
74
// lib.QuerySecurityPackageInfo(L"
NTLM
", ...)
78
// lib.ExpectQuerySecurityPackageInfo(L"
NTLM
", ...)
80
// lib.QuerySecurityPackageInfo(L"
NTLM
", ...)
http_auth_handler_ntlm.h
11
// This contains the portable and the SSPI implementations for
NTLM
.
37
// Code for handling HTTP
NTLM
authentication.
150
// Create an
NTLM
SPN to identify the |origin| server.
166
// The base64-encoded string following "
NTLM
" in the "WWW-Authenticate" or
http_auth_handler_ntlm_win.cc
7
// and "
NTLM
Security Support Provider" at
25
: auth_sspi_(sspi_library, "
NTLM
", NTLMSP_NAME, max_token_length),
http_auth_handler_ntlm.cc
93
// Base64 encode data in output buffer and prepend "
NTLM
".
103
*auth_token = std::string("
NTLM
") + encode_output;
108
// The
NTLM
challenge header looks like:
109
// WWW-Authenticate:
NTLM
auth-data
116
// TODO(cbentzel): Most of the logic between SSPI, GSSAPI, and portable
NTLM
124
if (!LowerCaseEqualsASCII(tok->scheme(), "
ntlm
"))
mock_gssapi_library_posix.h
81
// lib.ExpectSecurityContext("
NTLM
", ...)
83
// lib.init_sec_context("
NTLM
", ...)
89
// lib.ExpectSecurityContext("
NTLM
", ...)
92
// lib.init_sec_context("
NTLM
", ...)
96
// lib.ExpectSecurityContext("
NTLM
", ...)
98
// lib.init_sec_context("
NTLM
", ...)
http_auth_handler_factory.h
65
// since
NTLM
and Negotiate schemes do not support preemptive creation.
71
// For the
NTLM
and Negotiate handlers:
111
// The default factory supports Basic, Digest,
NTLM
, and Negotiate schemes.
160
// include "basic", "digest", "
ntlm
", and "negotiate", where case matters.
162
// |security_manager| is used by the
NTLM
and Negotiate authenticators
http_auth_handler_ntlm_portable.cc
87
// This file contains a cross-platform
NTLM
authentication implementation. It
88
// is based on documentation from: http://davenport.sourceforge.net/
ntlm
.html
156
// be included in response to a
NTLM
challenge.
159
// "network.
ntlm
.send-lm-response". By default, the preference is disabled
161
// makes
NTLM
authentication less secure. See
188
//
NTLM
uses little endian on the wire.
287
// NTLM_Hash computes the
NTLM
hash of the given password.
395
// 8
NTLM
Message Type
436
NTLM_LOG(("
NTLM
type 2 message:\n"));
555
// Next, we compute the LM and
NTLM
responses
[
all
...]
url_security_manager.h
28
// can be used with during
NTLM
or Negotiate authentication. If
48
// |auth_origin| for HTTP
NTLM
or Negotiate authentication.
des.h
14
// DES support code for
NTLM
authentication.
http_auth_handler.h
21
// (basic, digest,
NTLM
, Negotiate).
43
//
NTLM
+Negotiate it may indicate that another round of challenge+response
117
// example,
NTLM
. A connection-based authentication scheme does not support
169
// The {scheme, host, port} for the authentication target. Used by "
ntlm
"
http_proxy_utils.cc
23
// HTTP/1.0 proxies such as Squid (required for
NTLM
authentication).
md4.h
4
// WARNING: MD4 is cryptographically weak. Do not use MD4 except in
NTLM
64
* protocol you are implementing (e.g.,
NTLM
requires MD4).
http_auth_handler_factory.cc
67
registry_factory->RegisterSchemeFactory("
ntlm
", ntlm_factory);
138
if (IsSupportedScheme(supported_schemes, "
ntlm
")) {
145
registry_factory->RegisterSchemeFactory("
ntlm
", ntlm_factory);
http_auth_controller.cc
42
// RFC 4559 requires that a proxy indicate its support of
NTLM
/Negotiate
109
//
NTLM
Start: 4
110
//
NTLM
Reject: 5
131
//
NTLM
Proxy: 8
132
//
NTLM
Secure Proxy: 9
133
//
NTLM
Server: 10
134
//
NTLM
Secure Server: 11
http_auth_unittest.cc
106
// Choose Negotiate over
NTLM
on all platforms.
111
"WWW-Authenticate:
NTLM
\n",
389
std::string challenge_str = "
NTLM
";
395
EXPECT_EQ(std::string("
NTLM
"), challenge.scheme());
401
std::string challenge_str = "
NTLM
SGVsbG8sIFdvcmxkCg===";
405
EXPECT_EQ(std::string("
NTLM
"), challenge.scheme());
http_auth_sspi_win_unittest.cc
40
mock_library.ExpectQuerySecurityPackageInfo(L"
NTLM
", SEC_E_OK, &package_info);
42
int rv = DetermineMaxTokenLength(&mock_library, L"
NTLM
", &max_token_length);
http_auth.cc
172
"
ntlm
",
http_auth_handler_factory_unittest.cc
154
"
NTLM
",
http_auth_sspi_win.h
5
// This file contains common routines used by
NTLM
and Negotiate authentication
http_auth.h
132
// |origin| is used by the
NTLM
and Negotiation authentication scheme to
/external/apache-http/src/org/apache/http/client/params/
AuthPolicy.java
41
* The
NTLM
scheme is a proprietary Microsoft Windows Authentication
45
public static final String
NTLM
= "
NTLM
";
/external/apache-http/src/org/apache/http/impl/auth/
NTLMScheme.java
64
throw new IllegalArgumentException("
NTLM
engine may not be null");
72
return "
ntlm
";
81
//
NTLM
does not support the concept of an authentication realm
114
"Credentials cannot be used for
NTLM
authentication: "
140
buffer.append(":
NTLM
");
NTLMEngine.java
34
* Abstract
NTLM
authentication engine. The engine can be used to
38
* For details see <a href="http://davenport.sourceforge.net/
ntlm
.html">this resource</a>
NTLMEngineException.java
36
* Signals
NTLM
protocol failure.
/external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java
63
"
ntlm
",
Completed in 293 milliseconds
1
2