Searched refs:setEnabledCipherSuites (Results 1 - 19 of 19) sorted by relevance

/libcore/luni/src/main/java/javax/net/ssl/
H A DSSLServerSocket.java112 public abstract void setEnabledCipherSuites(String[] suites); method in class:SSLServerSocket
H A DSSLSocket.java157 public abstract void setEnabledCipherSuites(String[] suites); method in class:SSLSocket
318 setEnabledCipherSuites(cipherSuites);
H A DSSLEngine.java168 * {@link #setEnabledCipherSuites(String[])}.
226 public abstract void setEnabledCipherSuites(String[] suites); method in class:SSLEngine
492 setEnabledCipherSuites(cipherSuites);
/libcore/crypto/src/main/java/org/conscrypt/
H A DSSLServerSocketImpl.java116 * @see javax.net.ssl.SSLServerSocket#setEnabledCipherSuites(String[])
120 public void setEnabledCipherSuites(String[] suites) { method in class:SSLServerSocketImpl
121 sslParameters.setEnabledCipherSuites(suites);
H A DOpenSSLServerSocketImpl.java139 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLServerSocketImpl
H A DSSLEngineImpl.java215 * @see javax.net.ssl.SSLEngine#setEnabledCipherSuites(String[]) method
219 public void setEnabledCipherSuites(String[] suites) { method in class:SSLEngineImpl
220 sslParameters.setEnabledCipherSuites(suites);
H A DSSLSocketImpl.java257 * @see javax.net.ssl.SSLSocket#setEnabledCipherSuites(String[])
261 public void setEnabledCipherSuites(String[] suites) { method in class:SSLSocketImpl
262 sslParameters.setEnabledCipherSuites(suites);
H A DSSLParametersImpl.java225 protected void setEnabledCipherSuites(String[] suites) { method in class:SSLParametersImpl
H A DOpenSSLSocketImpl.java313 NativeCrypto.setEnabledCipherSuites(sslNativePointer, enabledCipherSuites);
793 @Override public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
H A DNativeCrypto.java875 public static void setEnabledCipherSuites(long ssl, String[] cipherSuites) { method in class:NativeCrypto
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestSSLSocketPair.java83 server.setEnabledCipherSuites(serverCipherSuites);
92 client.setEnabledCipherSuites(clientCipherSuites);
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DSSLServerSocketTest.java66 public void setEnabledCipherSuites(String[] suites) { method in class:SSLServerSocketTest.mySSLServerSocket
210 * javax.net.ssl.SSLServerSocket#setEnabledCipherSuites(String[] suites)
215 sss.setEnabledCipherSuites(null);
221 sss.setEnabledCipherSuites(unsupportedCipherSuites);
227 sss.setEnabledCipherSuites(sss.getSupportedCipherSuites());
H A DSSLSocketTest.java356 * javax.net.ssl.SSLSocket#setEnabledCipherSuites(String[] suites)
361 ssl.setEnabledCipherSuites(null);
365 ssl.setEnabledCipherSuites(new String[] {});
367 ssl.setEnabledCipherSuites(new String[] {"blubb"});
371 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites());
H A DSSLEngineTest.java66 e.setEnabledCipherSuites(suites);
113 e.setEnabledCipherSuites(suites);
199 * javax.net.ssl.SSLEngine#setEnabledCipherSuites(String[] suites)
206 sse.setEnabledCipherSuites(st);
215 sse.setEnabledCipherSuites(null);
1327 engine.setEnabledCipherSuites((String[]) enabledSuites.toArray(
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLEngineTest.java133 client.setEnabledCipherSuites(cipherSuiteArray);
134 server.setEnabledCipherSuites(cipherSuiteArray);
150 client.setEnabledCipherSuites(cipherSuiteArray);
151 server.setEnabledCipherSuites(cipherSuiteArray);
183 e.setEnabledCipherSuites(null);
188 e.setEnabledCipherSuites(new String[1]);
193 e.setEnabledCipherSuites(new String[] { "Bogus" } );
198 e.setEnabledCipherSuites(new String[0]);
199 e.setEnabledCipherSuites(e.getEnabledCipherSuites());
200 e.setEnabledCipherSuites(
[all...]
H A DSSLSocketTest.java222 ssl.setEnabledCipherSuites(null);
227 ssl.setEnabledCipherSuites(new String[1]);
232 ssl.setEnabledCipherSuites(new String[] { "Bogus" } );
237 ssl.setEnabledCipherSuites(new String[0]);
238 ssl.setEnabledCipherSuites(ssl.getEnabledCipherSuites());
239 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites());
1032 client.setEnabledCipherSuites(new String[0]);
H A DSSLSessionContextTest.java171 c.serverSocket.setEnabledCipherSuites(supportedCipherSuites);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySSLContextSpi.java142 public void setEnabledCipherSuites(String[] suites) { } method in class:MySSLContextSpi.tmpSSLEngine
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java140 public void setEnabledCipherSuites(String[] suites) { } method in class:MySSLContextSpi.tmpSSLEngine

Completed in 320 milliseconds