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

/external/conscrypt/common/src/main/java/org/conscrypt/
H A DConscryptServerSocket.java28 private final SSLParametersImpl sslParameters; field in class:ConscryptServerSocket
32 ConscryptServerSocket(SSLParametersImpl sslParameters) throws IOException { argument
33 this.sslParameters = sslParameters;
36 ConscryptServerSocket(int port, SSLParametersImpl sslParameters) argument
39 this.sslParameters = sslParameters;
42 ConscryptServerSocket(int port, int backlog, SSLParametersImpl sslParameters) argument
45 this.sslParameters = sslParameters;
48 ConscryptServerSocket(int port, int backlog, InetAddress iAddress, SSLParametersImpl sslParameters) argument
[all...]
H A DOpenSSLServerSocketFactoryImpl.java34 private SSLParametersImpl sslParameters; field in class:OpenSSLServerSocketFactoryImpl
40 this.sslParameters = SSLParametersImpl.getDefault();
41 this.sslParameters.setUseClientMode(false);
48 OpenSSLServerSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
49 this.sslParameters = (SSLParametersImpl) sslParameters.clone();
50 this.sslParameters.setUseClientMode(false);
70 return sslParameters.getEnabledCipherSuites();
80 return new ConscryptServerSocket((SSLParametersImpl) sslParameters.clone())
86 return new ConscryptServerSocket(port, (SSLParametersImpl) sslParameters
[all...]
H A DOpenSSLSocketFactoryImpl.java36 private final SSLParametersImpl sslParameters; field in class:OpenSSLSocketFactoryImpl
48 this.sslParameters = sslParametersLocal;
52 OpenSSLSocketFactoryImpl(SSLParametersImpl sslParameters) { argument
53 this.sslParameters = sslParameters;
74 return sslParameters.getEnabledCipherSuites();
88 return new ConscryptEngineSocket((SSLParametersImpl) sslParameters.clone());
90 return new ConscryptFileDescriptorSocket((SSLParametersImpl) sslParameters.clone());
98 hostname, port, (SSLParametersImpl) sslParameters.clone());
101 hostname, port, (SSLParametersImpl) sslParameters
[all...]
H A DOpenSSLContextImpl.java55 SSLParametersImpl sslParameters; field in class:OpenSSLContextImpl
82 sslParameters = new SSLParametersImpl(DEFAULT_SSL_CONTEXT_IMPL.getKeyManagers(),
101 sslParameters = new SSLParametersImpl(
107 if (sslParameters == null) {
110 return Platform.wrapSocketFactoryIfNeeded(new OpenSSLSocketFactoryImpl(sslParameters));
115 if (sslParameters == null) {
118 return new OpenSSLServerSocketFactoryImpl(sslParameters);
123 if (sslParameters == null) {
126 SSLParametersImpl p = (SSLParametersImpl) sslParameters.clone();
133 if (sslParameters
[all...]
H A DConscryptFileDescriptorSocket.java92 private final SSLParametersImpl sslParameters; field in class:ConscryptFileDescriptorSocket
110 ConscryptFileDescriptorSocket(SSLParametersImpl sslParameters) throws IOException { argument
111 this.sslParameters = sslParameters;
112 this.ssl = newSsl(sslParameters, this);
113 sslSession = new ActiveSession(ssl, sslParameters.getSessionContext());
116 ConscryptFileDescriptorSocket(String hostname, int port, SSLParametersImpl sslParameters) argument
119 this.sslParameters = sslParameters;
120 this.ssl = newSsl(sslParameters, thi
124 ConscryptFileDescriptorSocket(InetAddress address, int port, SSLParametersImpl sslParameters) argument
132 ConscryptFileDescriptorSocket(String hostname, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
140 ConscryptFileDescriptorSocket(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
148 ConscryptFileDescriptorSocket(Socket socket, String hostname, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
156 newSsl(SSLParametersImpl sslParameters, ConscryptFileDescriptorSocket engine) argument
[all...]
H A DConscryptEngineSocket.java58 ConscryptEngineSocket(SSLParametersImpl sslParameters) throws IOException { argument
59 engine = newEngine(sslParameters, this);
62 ConscryptEngineSocket(String hostname, int port, SSLParametersImpl sslParameters) argument
65 engine = newEngine(sslParameters, this);
68 ConscryptEngineSocket(InetAddress address, int port, SSLParametersImpl sslParameters) argument
71 engine = newEngine(sslParameters, this);
75 SSLParametersImpl sslParameters) throws IOException {
77 engine = newEngine(sslParameters, this);
81 SSLParametersImpl sslParameters) throws IOException {
83 engine = newEngine(sslParameters, thi
74 ConscryptEngineSocket(String hostname, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
80 ConscryptEngineSocket(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
86 ConscryptEngineSocket(Socket socket, String hostname, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
92 newEngine( SSLParametersImpl sslParameters, final ConscryptEngineSocket socket) argument
119 setSSLParameters(SSLParameters sslParameters) argument
[all...]
H A DConscryptEngine.java112 private final SSLParametersImpl sslParameters; field in class:ConscryptEngine
170 ConscryptEngine(SSLParametersImpl sslParameters) { argument
171 this.sslParameters = sslParameters;
173 this.ssl = newSsl(sslParameters, this);
175 sslSession = new ActiveSession(ssl, sslParameters.getSessionContext());
178 ConscryptEngine(String host, int port, SSLParametersImpl sslParameters) { argument
179 this.sslParameters = sslParameters;
181 this.ssl = newSsl(sslParameters, thi
186 ConscryptEngine(SSLParametersImpl sslParameters, PeerInfoProvider peerInfoProvider) argument
194 newSsl(SSLParametersImpl sslParameters, ConscryptEngine engine) argument
[all...]
H A DClientSessionContext.java55 SslSessionWrapper getCachedSession(String hostName, int port, SSLParametersImpl sslParameters) { argument
67 for (String enabledProtocol : sslParameters.enabledProtocols) {
79 for (String enabledCipherSuite : sslParameters.enabledCipherSuites) {
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
H A DOpenSSLSocketImpl.java44 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
48 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters, String[] enabledProtocols, argument
53 protected OpenSSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
58 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
64 SSLParametersImpl sslParameters) throws IOException {
69 int clientPort, SSLParametersImpl sslParameters) throws IOException {
74 SSLParametersImpl sslParameters) throws IOException {
63 OpenSSLSocketImpl(String host, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
68 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
73 OpenSSLSocketImpl(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImpl.java44 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters) throws IOException { argument
48 protected OpenSSLSocketImpl(SSLParametersImpl sslParameters, String[] enabledProtocols, argument
53 protected OpenSSLSocketImpl(String host, int port, SSLParametersImpl sslParameters) argument
58 protected OpenSSLSocketImpl(InetAddress address, int port, SSLParametersImpl sslParameters) argument
64 SSLParametersImpl sslParameters) throws IOException {
69 int clientPort, SSLParametersImpl sslParameters) throws IOException {
74 SSLParametersImpl sslParameters) throws IOException {
63 OpenSSLSocketImpl(String host, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
68 OpenSSLSocketImpl(InetAddress address, int port, InetAddress clientAddress, int clientPort, SSLParametersImpl sslParameters) argument
73 OpenSSLSocketImpl(Socket socket, String host, int port, boolean autoClose, SSLParametersImpl sslParameters) argument
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
H A DConscryptSocketTest.java133 contextSSLParameters = OpenSSLContextImpl.class.getDeclaredField("sslParameters");
186 SSLParametersImpl sslParameters = getContextSSLParameters(context);
187 sslParameters.setCTVerificationEnabled(true);
211 SSLParametersImpl sslParameters = getContextSSLParameters(context);
212 sslParameters.setSCTExtension(sctTLSExtension);
213 sslParameters.setOCSPResponse(ocspResponse);
/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 1203 milliseconds