Searched defs:sslParameters (Results 1 - 17 of 17) sorted by relevance

/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DServerHandshakeImplTest.java38 private SSLParameters sslParameters; field in class:ServerHandshakeImplTest
52 sslParameters = new SSLParameters(kmf.getKeyManagers(), tmf
56 server = new ServerHandshakeImpl(new SSLEngineImpl(sslParameters));
126 assertSame(server.parameters.getKeyManager(), sslParameters
128 assertSame(server.parameters.getTrustManager(), sslParameters
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/provider/jsse/
H A DJSSETestData.java42 private static SSLParameters sslParameters; field in class:JSSETestData
59 sslParameters = new SSLParameters(kmf.getKeyManagers(), tmf
83 return sslParameters;
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketFactoryImpl.java26 private SSLParametersImpl sslParameters; field in class:OpenSSLServerSocketFactoryImpl
31 this.sslParameters = SSLParametersImpl.getDefault();
32 this.sslParameters.setUseClientMode(false);
40 public OpenSSLServerSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
41 this.sslParameters = (SSLParametersImpl) sslParameters.clone();
42 this.sslParameters.setUseClientMode(false);
47 return sslParameters.getEnabledCipherSuites();
57 return new OpenSSLServerSocketImpl((SSLParametersImpl) sslParameters.clone());
62 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters
[all...]
H A DOpenSSLSocketFactoryImpl.java27 private final SSLParametersImpl sslParameters; field in class:OpenSSLSocketFactoryImpl
39 this.sslParameters = sslParametersLocal;
43 public OpenSSLSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
44 this.sslParameters = sslParameters;
50 return sslParameters.getEnabledCipherSuites();
63 return new OpenSSLSocketImpl((SSLParametersImpl) sslParameters.clone());
68 return new OpenSSLSocketImpl(hostname, port, (SSLParametersImpl) sslParameters.clone());
78 (SSLParametersImpl) sslParameters.clone());
83 return new OpenSSLSocketImpl(address, port, (SSLParametersImpl) sslParameters
[all...]
H A DOpenSSLContextImpl.java51 protected SSLParametersImpl sslParameters; field in class:OpenSSLContextImpl
81 sslParameters = new SSLParametersImpl(DEFAULT_SSL_CONTEXT_IMPL.getKeyManagers(),
100 sslParameters = new SSLParametersImpl(kms, tms, sr, clientSessionContext,
106 if (sslParameters == null) {
109 return Platform.wrapSocketFactoryIfNeeded(new OpenSSLSocketFactoryImpl(sslParameters));
114 if (sslParameters == null) {
117 return new OpenSSLServerSocketFactoryImpl(sslParameters);
122 if (sslParameters == null) {
125 SSLParametersImpl p = (SSLParametersImpl) sslParameters.clone();
132 if (sslParameters
[all...]
H A DOpenSSLServerSocketImpl.java27 private final SSLParametersImpl sslParameters; field in class:OpenSSLServerSocketImpl
30 protected OpenSSLServerSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
31 this.sslParameters = sslParameters;
34 protected OpenSSLServerSocketImpl(int port, SSLParametersImpl sslParameters) argument
37 this.sslParameters = sslParameters;
40 protected OpenSSLServerSocketImpl(int port, int backlog, SSLParametersImpl sslParameters) argument
43 this.sslParameters = sslParameters;
46 OpenSSLServerSocketImpl(int port, int backlog, InetAddress iAddress, SSLParametersImpl sslParameters) argument
[all...]
H A DOpenSSLSocketImplWrapper.java34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
35 super(socket, hostname, port, autoClose, sslParameters);
33 OpenSSLSocketImplWrapper(Socket socket, String hostname, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
H A DOpenSSLEngineImpl.java43 private final SSLParametersImpl sslParameters; field in class:OpenSSLEngineImpl
122 public OpenSSLEngineImpl(SSLParametersImpl sslParameters) { argument
123 this.sslParameters = sslParameters;
126 public OpenSSLEngineImpl(String host, int port, SSLParametersImpl sslParameters) { argument
128 this.sslParameters = sslParameters;
153 final AbstractSessionContext sessionContext = sslParameters.getSessionContext();
156 sslSession = sslParameters.getSessionToReuse(
158 sslParameters
[all...]
H A DOpenSSLSocketImpl.java150 private final SSLParametersImpl sslParameters; field in class:OpenSSLSocketImpl
182 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
187 this.sslParameters = sslParameters;
190 protected OpenSSLSocketImpl(String hostname, int port, SSLParametersImpl sslParameters) argument
197 this.sslParameters = sslParameters;
200 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
207 this.sslParameters = sslParameters;
211 OpenSSLSocketImpl(String hostname, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
222 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
237 OpenSSLSocketImpl(Socket socket, String hostname, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
[all...]
/external/conscrypt/src/stub/java/com/android/org/conscrypt/
H A DOpenSSLSocketImpl.java50 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
54 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters, argument
60 protected OpenSSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
65 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
73 SSLParametersImpl sslParameters) throws IOException {
79 SSLParametersImpl sslParameters) throws IOException {
84 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
71 OpenSSLSocketImpl(String host, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
77 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
83 OpenSSLSocketImpl(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
/external/conscrypt/src/stub/java/org/apache/harmony/xnet/xnet/provider/jsse/
H A DOpenSSLSocketImpl.java50 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
54 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters, argument
60 protected OpenSSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
65 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
73 SSLParametersImpl sslParameters) throws IOException {
79 SSLParametersImpl sslParameters) throws IOException {
84 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
71 OpenSSLSocketImpl(String host, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
77 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
83 OpenSSLSocketImpl(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 182 milliseconds