7071727374757677
public SSLEngine engineCreateSSLEngine(String host, int port) { if (sslParameters == null) { throw new IllegalStateException("SSLContext is not initiallized."); } return new SSLEngineImpl(host, port, (SSLParameters) sslParameters.clone()); }
78798081828384
public SSLEngine engineCreateSSLEngine() { if (sslParameters == null) { throw new IllegalStateException("SSLContext is not initiallized."); } return new SSLEngineImpl((SSLParameters) sslParameters.clone()); }
8081828384858687
88899091929394
7980818283848586
@Override public SSLEngine engineCreateSSLEngine(String host, int port) { if (sslParameters == null) { throw new IllegalStateException("SSLContext is not initiallized."); } return new SSLEngineImpl(host, port, (SSLParameters) sslParameters.clone()); }
@Override public SSLEngine engineCreateSSLEngine() { if (sslParameters == null) { throw new IllegalStateException("SSLContext is not initiallized."); } return new SSLEngineImpl((SSLParameters) sslParameters.clone()); }