Searched refs:NTLM (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DVersion.java29 NTLM, NTLM2, NTLMv2 enum constant in enum:Version
H A DClient.java34 * The NTLM client. Not multi-thread enabled.<p>
45 public final class Client extends NTLM {
53 * Creates an NTLM Client instance.
54 * @param version the NTLM version to use, which can be:
56 * <li>LM/NTLM: Original NTLM v1
57 * <li>LM: Original NTLM v1, LM only
58 * <li>NTLM: Original NTLM v1, NTLM onl
[all...]
H A DServer.java32 * The NTLM server, not multi-thread enabled.<p>
50 public abstract class Server extends NTLM {
55 * @param version the NTLM version to use, which can be:
57 * <li>NTLM: Original NTLM v1
58 * <li>NTLM2: NTLM v1 with Client Challenge
59 * <li>NTLMv2: NTLM v2
63 * NTLM (or NTLMv2) is verified.
75 debug("NTLM Server: (t,version) = (%s,%s)\n", domain, version);
92 debug("NTLM Serve
[all...]
H A DNTLM.java47 * NTLM authentication implemented according to MS-NLMP, version 12.1
50 class NTLM { class
65 protected NTLM(String version) throws NTLMException { method in class:NTLM
68 case "LM": v = NTLM; writeLM = true; writeNTLM = false; break;
69 case "NTLM": v = NTLM; writeLM = false; writeNTLM = true; break;
70 case "LM/NTLM": v = NTLM; writeLM = writeNTLM = true; break;
92 * Prints out a formatted string, called in various places inside then NTLM
109 * the NTLM implementatio
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthScheme.java33 NTLM, enum constant in enum:AuthScheme
H A DHttpURLConnection.java73 import static sun.net.www.protocol.http.AuthScheme.NTLM;
312 private boolean doingNTLM2ndStage = false; /* doing the 2nd stage of an NTLM server authentication */
313 private boolean doingNTLMp2ndStage = false; /* doing the 2nd stage of an NTLM proxy authentication */
315 /* try auth without calling Authenticator. Used for transparent NTLM authentication */
446 /* Used for Windows NTLM implementation */
1278 * kind of failure and do proper fallback (say, to NTLM).
1456 serverAuthentication.getAuthScheme() != NTLM) {
1703 * after receiving a 407 error. In the case of NTLM however,
1710 proxyAuthentication.getAuthScheme() != NTLM) {
1978 authScheme = NTLM;
[all...]
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java92 AuthScheme.NTLM,
126 AuthScheme.NTLM,
142 * @return true if NTLM supported transparently (no password needed, SSO)
195 String response = "NTLM " + seq.getAuthHeader (raw.length()>6?raw.substring(5):null);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java49 * NTLM authentication is nominally based on the framework defined in RFC2617,
55 * <---- 401 (signalling NTLM) --------
57 * REQ (with type1 NTLM msg) --------->
58 * <---- 401 (with type 2 NTLM msg) ---
60 * REQ (with type3 NTLM msg) --------->
64 * after the type2 response is received. This means that NTLM does not work end-to-end
126 AuthScheme.NTLM,
167 AuthScheme.NTLM,
216 if (raw.length() < 6) { /* NTLM<sp> */
219 String msg = raw.substring (5); /* skip NTLM<s
[all...]

Completed in 2369 milliseconds