Example usage for org.apache.http.impl.auth NTLMEngine interface-usage

List of usage examples for org.apache.http.impl.auth NTLMEngine interface-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.auth NTLMEngine interface-usage.

Usage

From source file ti.ntlm.JCIFSEngine.java

public class JCIFSEngine implements NTLMEngine {

    private static final int TYPE_1_FLAGS = NtlmFlags.NTLMSSP_NEGOTIATE_56 | NtlmFlags.NTLMSSP_NEGOTIATE_128
            | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 | NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN
            | NtlmFlags.NTLMSSP_REQUEST_TARGET;

From source file org.openscore.content.httpclient.build.auth.JCIFSEngine.java

public class JCIFSEngine implements NTLMEngine {

    private static final int TYPE_1_FLAGS = NtlmFlags.NTLMSSP_NEGOTIATE_56 | NtlmFlags.NTLMSSP_NEGOTIATE_128
            | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 | NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN
            | NtlmFlags.NTLMSSP_REQUEST_TARGET;

From source file io.cloudslang.content.httpclient.build.auth.JCIFSEngine.java

public class JCIFSEngine implements NTLMEngine {

    private static final int TYPE_1_FLAGS = NtlmFlags.NTLMSSP_NEGOTIATE_56 | NtlmFlags.NTLMSSP_NEGOTIATE_128
            | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 | NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN
            | NtlmFlags.NTLMSSP_REQUEST_TARGET;

From source file com.anaplan.client.transport.JCIFSEngine.java

/** Utilizes JCIFS for NTLM authentication.
  */
public class JCIFSEngine implements NTLMEngine {

    private static Class<?> NTLM_FLAGS, TYPE_1_MESSAGE, TYPE_2_MESSAGE, TYPE_3_MESSAGE, BASE64;
    private static int TYPE_1_FLAGS, NTLMSSP_TARGET_TYPE_DOMAIN, NTLMSSP_TARGET_TYPE_SERVER;

From source file org.orbeon.oxf.resources.handler.JCIFSEngine.java

public class JCIFSEngine implements NTLMEngine {

    public String generateType1Msg(String domain, String workstation) throws NTLMEngineException {
        Type1Message t1m = new Type1Message(Type1Message.getDefaultFlags(), domain, workstation);
        return Base64.encode(t1m.toByteArray());
    }

From source file com.mobilehelix.appserver.auth.JCIFSHttpClientEngine.java

public final class JCIFSHttpClientEngine implements NTLMEngine {

    private static final int TYPE_1_FLAGS = NtlmFlags.NTLMSSP_NEGOTIATE_56 | NtlmFlags.NTLMSSP_NEGOTIATE_128
            | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 | NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN
            | NtlmFlags.NTLMSSP_REQUEST_TARGET;

From source file org.codelibs.robot.client.http.ntlm.JcifsEngine.java

/**
 * JcifsEngine is a NTLM Engine implementation based on JCIFS.
 *
 * @author shinsuke
 *
 */

From source file org.seasar.robot.client.http.ntlm.JcifsEngine.java

/**
 * JcifsEngine is a NTLM Engine implementation based on JCIFS.
 * 
 * @author shinsuke
 * 
 */

From source file org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine.java

/**
 * JcifsEngine is a NTLM Engine implementation based on JCIFS.
 *
 * @author shinsuke
 *
 */

From source file org.brunocvcunha.taskerbox.core.http.auth.JCIFSEngine.java

/**
 * JCIFS Configuration
 *
 * From: https://hc.apache.org/httpcomponents-client-ga/ntlm.html
 *
 */