Methods Summary |
---|
protected javax.net.ssl.SSLEngine | engineCreateSSLEngine(java.lang.String host, int port)
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return new tmpSSLEngine(host, port);
|
protected javax.net.ssl.SSLEngine | engineCreateSSLEngine()
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return new tmpSSLEngine();
|
protected javax.net.ssl.SSLSessionContext | engineGetClientSessionContext()
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return null;
|
protected javax.net.ssl.SSLSessionContext | engineGetServerSessionContext()
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return null;
|
protected javax.net.ssl.SSLServerSocketFactory | engineGetServerSocketFactory()
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return null;
|
protected javax.net.ssl.SSLSocketFactory | engineGetSocketFactory()
if (!init) {
throw new RuntimeException("Not initialiazed");
}
return null;
|
protected void | engineInit(javax.net.ssl.KeyManager[] km, javax.net.ssl.TrustManager[] tm, java.security.SecureRandom sr)
if (sr == null) {
throw new KeyManagementException(
"secureRandom is null");
}
init = true;
|