com.github.zhkl0228.impersonator.Impersonator Maven / Gradle / Ivy
package com.github.zhkl0228.impersonator;
import org.bouncycastle.tls.ClientHello;
import java.io.IOException;
import java.util.Map;
public interface Impersonator {
int[] getCipherSuites();
void onEstablishSession(Map clientExtensions) throws IOException;
void onSendClientHelloMessage(ClientHello clientHello, Map clientExtensions) throws IOException;
}