org.littleshoot.proxy.SslEngineSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of littleproxy Show documentation
Show all versions of littleproxy Show documentation
LittleProxy is a high performance HTTP proxy written in Java and using the Netty networking framework.
package org.littleshoot.proxy;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLEngine;
/**
* Source for {@link SSLContext}s.
*/
public interface SslEngineSource {
SSLEngine newSslEngine();
}