Searched refs:sslParameters (Results 1 - 14 of 14) sorted by relevance

/libcore/crypto/src/main/java/org/conscrypt/
H A DSSLServerSocketImpl.java31 // the sslParameters object encapsulates all the info
37 private final SSLParametersImpl sslParameters; field in class:SSLServerSocketImpl
44 * @param sslParameters: SSLParameters
47 protected SSLServerSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
48 this.sslParameters = sslParameters;
54 * @param sslParameters: SSLParameters
57 protected SSLServerSocketImpl(int port, SSLParametersImpl sslParameters) argument
60 this.sslParameters = sslParameters;
70 SSLServerSocketImpl(int port, int backlog, SSLParametersImpl sslParameters) argument
84 SSLServerSocketImpl(int port, int backlog, InetAddress iAddress, SSLParametersImpl sslParameters) argument
[all...]
H A DOpenSSLContextImpl.java39 if (sslParameters == null) {
42 return new OpenSSLSocketFactoryImpl(sslParameters);
47 if (sslParameters == null) {
50 return new OpenSSLServerSocketFactoryImpl(sslParameters);
H A DSSLServerSocketFactoryImpl.java32 private SSLParametersImpl sslParameters; field in class:SSLServerSocketFactoryImpl
40 this.sslParameters = SSLParametersImpl.getDefault();
41 this.sslParameters.setUseClientMode(false);
52 protected SSLServerSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
53 this.sslParameters = (SSLParametersImpl) sslParameters.clone();
54 this.sslParameters.setUseClientMode(false);
65 return sslParameters.getEnabledCipherSuites();
87 return new SSLServerSocketImpl((SSLParametersImpl) sslParameters.clone());
100 (SSLParametersImpl) sslParameters
[all...]
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);
54 return new OpenSSLServerSocketImpl((SSLParametersImpl) sslParameters.clone());
58 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone());
65 (SSLParametersImpl) sslParameters
[all...]
H A DOpenSSLServerSocketImpl.java32 private final SSLParametersImpl sslParameters; field in class:OpenSSLServerSocketImpl
37 protected OpenSSLServerSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
38 this.sslParameters = sslParameters;
41 protected OpenSSLServerSocketImpl(int port, SSLParametersImpl sslParameters) argument
44 this.sslParameters = sslParameters;
47 protected OpenSSLServerSocketImpl(int port, int backlog, SSLParametersImpl sslParameters) argument
50 this.sslParameters = sslParameters;
53 OpenSSLServerSocketImpl(int port, int backlog, InetAddress iAddress, SSLParametersImpl sslParameters) argument
[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;
60 return new OpenSSLSocketImpl((SSLParametersImpl) sslParameters.clone());
64 return new OpenSSLSocketImpl(host, port, (SSLParametersImpl) sslParameters.clone());
73 (SSLParametersImpl) sslParameters.clone());
77 return new OpenSSLSocketImpl(host, port, (SSLParametersImpl) sslParameters.clone());
89 (SSLParametersImpl) sslParameters
[all...]
H A DSSLContextImpl.java48 protected SSLParametersImpl sslParameters; field in class:SSLContextImpl
71 sslParameters = new SSLParametersImpl(DEFAULT_SSL_CONTEXT_IMPL.getKeyManagers(),
92 sslParameters = new SSLParametersImpl(kms, tms, sr,
98 if (sslParameters == null) {
101 return new SSLSocketFactoryImpl(sslParameters);
106 if (sslParameters == null) {
109 return new SSLServerSocketFactoryImpl(sslParameters);
114 if (sslParameters == null) {
117 SSLParametersImpl p = (SSLParametersImpl) sslParameters.clone();
124 if (sslParameters
[all...]
H A DSSLSocketFactoryImpl.java33 private final SSLParametersImpl sslParameters; field in class:SSLSocketFactoryImpl
48 this.sslParameters = sslParametersLocal;
55 protected SSLSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
56 this.sslParameters = sslParameters;
68 return sslParameters.getEnabledCipherSuites();
91 return new SSLSocketWrapper(s, host, port, autoClose, (SSLParametersImpl) sslParameters
105 return new SSLSocketImpl((SSLParametersImpl) sslParameters.clone());
118 (SSLParametersImpl) sslParameters.clone());
132 (SSLParametersImpl) sslParameters
[all...]
H A DSSLSocketImpl.java65 // the sslParameters object encapsulates all the info
71 protected SSLParametersImpl sslParameters; field in class:SSLSocketImpl
84 * @param sslParameters: SSLParametersImpl
88 protected SSLSocketImpl(SSLParametersImpl sslParameters) { argument
89 this.sslParameters = sslParameters;
99 * @param sslParameters: SSLParametersImpl
105 protected SSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
110 this.sslParameters = sslParameters;
126 SSLSocketImpl(String host, int port, InetAddress localHost, int localPort, SSLParametersImpl sslParameters) argument
147 SSLSocketImpl(InetAddress host, int port, SSLParametersImpl sslParameters) argument
168 SSLSocketImpl(InetAddress address, int port, InetAddress localAddress, int localPort, SSLParametersImpl sslParameters) argument
[all...]
H A DOpenSSLSocketImpl.java73 private SSLParametersImpl sslParameters; field in class:OpenSSLSocketImpl
113 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
115 init(sslParameters);
118 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters, argument
122 init(sslParameters, enabledProtocols, enabledCipherSuites);
125 protected OpenSSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
129 init(sslParameters);
132 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
136 init(sslParameters);
142 SSLParametersImpl sslParameters) throw
140 OpenSSLSocketImpl(String host, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
148 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
160 OpenSSLSocketImpl(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
177 init(SSLParametersImpl sslParameters) argument
187 init(SSLParametersImpl sslParameters, String[] enabledProtocols, String[] enabledCipherSuites) argument
[all...]
H A DSSLEngineImpl.java71 protected SSLParametersImpl sslParameters; field in class:SSLEngineImpl
82 protected SSLEngineImpl(SSLParametersImpl sslParameters) { argument
83 this.sslParameters = sslParameters;
86 protected SSLEngineImpl(String host, int port, SSLParametersImpl sslParameters) { argument
88 this.sslParameters = sslParameters;
210 return sslParameters.getEnabledCipherSuites();
220 sslParameters.setEnabledCipherSuites(suites);
240 return sslParameters
[all...]
H A DOpenSSLSocketImplWrapper.java34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
35 super(socket, host, port, autoClose, sslParameters);
33 OpenSSLSocketImplWrapper(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
H A DSSLSocketWrapper.java36 SSLParametersImpl sslParameters) throws IOException {
37 super(host, port, sslParameters);
35 SSLSocketWrapper(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
H A DHandshakeProtocol.java164 this.parameters = engineOwner.sslParameters;
169 this.parameters = socketOwner.sslParameters;

Completed in 491 milliseconds