org.bouncycastle.jsse.provider.ProvSSLEngine_8 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of impersonator Show documentation
Show all versions of impersonator Show documentation
Spoof TLS/JA3/JA4 and HTTP/2 fingerprints in Java
The newest version!
package org.bouncycastle.jsse.provider;
import java.util.List;
import java.util.function.BiFunction;
import javax.net.ssl.SSLEngine;
class ProvSSLEngine_8
extends ProvSSLEngine
{
protected ProvSSLEngine_8(ContextData contextData)
{
super(contextData);
}
protected ProvSSLEngine_8(ContextData contextData, String peerHost, int peerPort)
{
super(contextData, peerHost, peerPort);
}
// An SSLEngine method from JDK 9 (and then 8u251)
public synchronized void setHandshakeApplicationProtocolSelector(BiFunction, String> selector)
{
sslParameters.setEngineAPSelector(JsseUtils_8.importAPSelector(selector));
}
// An SSLEngine method from JDK 9 (and then 8u251)
public synchronized BiFunction, String> getHandshakeApplicationProtocolSelector()
{
return JsseUtils_8.exportAPSelector(sslParameters.getEngineAPSelector());
}
}