Searched refs:getSupportedCipherSuites (Results 1 - 22 of 22) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DSSLServerSocketFactoryTest.java40 public String[] getSupportedCipherSuites() { method in class:SSLServerSocketFactoryTest.MockSSLServerSocketFactory
95 * javax.net.ssl.SSLServerSocketFactory#getSupportedCipherSuites()
101 assertTrue(ssf.getSupportedCipherSuites().length > 0);
H A DSSLServerSocketTest.java61 public String[] getSupportedCipherSuites() { method in class:SSLServerSocketTest.mySSLServerSocket
197 * javax.net.ssl.SSLServerSocket#getSupportedCipherSuites()
201 String[] res = sss.getSupportedCipherSuites();
224 int count = sss.getSupportedCipherSuites().length;
226 sss.setEnabledCipherSuites(sss.getSupportedCipherSuites());
230 Arrays.asList(sss.getSupportedCipherSuites()),
240 String[] res = sss.getSupportedCipherSuites();
H A DSSLSocketFactoryTest.java117 * javax.net.ssl.SSLSocketFactory#getSupportedCipherSuites()
123 sf.getSupportedCipherSuites().length > 0);
H A DSSLSocketTest.java345 * javax.net.ssl.SSLSocket#getSupportedCipherSuites()
349 String[] res = ssl.getSupportedCipherSuites();
371 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites());
375 Arrays.asList(ssl.getSupportedCipherSuites()),
H A DSSLEngineTest.java63 String[] suites = e.getSupportedCipherSuites();
100 String[] suites = e.getSupportedCipherSuites();
158 * javax.net.ssl.SSLEngine#getSupportedCipherSuites()
163 String[] res = sse.getSupportedCipherSuites();
174 String[] st = sse.getSupportedCipherSuites();
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLServerSocketTest.java33 @Override public String[] getSupportedCipherSuites() { return new String[0]; }
H A DSSLSocketTest.java34 @Override public String[] getSupportedCipherSuites() { return new String[0]; }
H A DSSLSocketFactoryTest.java104 public String[] getSupportedCipherSuites() { method in class:SSLSocketFactoryTest.FakeSSLSocketFactory
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLContextSpi.java194 params.setCipherSuites(socket.getSupportedCipherSuites());
H A DSSLServerSocketFactory.java159 * @see #getSupportedCipherSuites()
176 public abstract String [] getSupportedCipherSuites(); method in class:SSLServerSocketFactory
230 public String [] getSupportedCipherSuites() { method in class:DefaultSSLServerSocketFactory
H A DSSLServerSocket.java201 * @see #getSupportedCipherSuites()
210 * The cipher suites must have been listed by getSupportedCipherSuites()
226 * @see #getSupportedCipherSuites()
245 public abstract String [] getSupportedCipherSuites(); method in class:SSLServerSocket
H A DSSLSocketFactory.java185 * @see #getSupportedCipherSuites()
200 public abstract String [] getSupportedCipherSuites(); method in class:SSLSocketFactory
338 public String [] getSupportedCipherSuites() { method in class:DefaultSSLSocketFactory
H A DSSLSocket.java89 * using <em>getSupportedCipherSuites</em>.
215 * {@link #getSupportedCipherSuites() getSupportedCipherSuites},
1006 public abstract String [] getSupportedCipherSuites(); method in class:SSLSocket
1021 * @see #getSupportedCipherSuites()
1031 * been listed by getSupportedCipherSuites(), or the method will
1042 * @see #getSupportedCipherSuites()
H A DSSLEngine.java301 * using {@link #getSupportedCipherSuites()}.
1515 public abstract String [] getSupportedCipherSuites(); method in class:SSLEngine
1530 * @see #getSupportedCipherSuites()
1540 * been listed by getSupportedCipherSuites(), or the method will
1551 * @see #getSupportedCipherSuites()
/libcore/support/src/test/java/tests/net/
H A DDelegatingSSLSocketFactory.java54 public String[] getSupportedCipherSuites() { method in class:DelegatingSSLSocketFactory
55 return mDelegate.getSupportedCipherSuites();
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DSSLConfigurationAsserts.java97 sslSocketFactory.getSupportedCipherSuites());
126 assertCipherSuitesEqual(sslSocket.getSupportedCipherSuites(),
153 sslServerSocketFactory.getSupportedCipherSuites());
184 assertCipherSuitesEqual(sslServerSocket.getSupportedCipherSuites(),
215 assertCipherSuitesEqual(sslEngine.getSupportedCipherSuites(),
H A DTestSSLContext.java410 public String[] getSupportedCipherSuites() {
411 return sf.getSupportedCipherSuites();
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DSSLSocketFactoryImpl.java42 public String[] getSupportedCipherSuites() { method in class:SSLSocketFactoryImpl
H A DMySSLContextSpi.java134 public String[] getSupportedCipherSuites() { return null; } method in class:MySSLContextSpi.tmpSSLEngine
/libcore/tools/docs/crypto/src/java/libcore/java/security/
H A DListProviders.java144 for (String suite : engine.getSupportedCipherSuites()) {
151 for (String suite : socketFactory.getSupportedCipherSuites()) {
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySSLContextSpi.java136 public String[] getSupportedCipherSuites() { return null; } method in class:MySSLContextSpi.tmpSSLEngine
/libcore/luni/src/test/java/libcore/java/net/
H A DURLConnectionTest.java3205 public String[] getSupportedCipherSuites() { method in class:URLConnectionTest.DelegatingSSLSocketFactory
3206 return delegate.getSupportedCipherSuites();
3382 @Override public String[] getSupportedCipherSuites() { method in class:URLConnectionTest.DelegatingSSLSocket
3383 return delegate.getSupportedCipherSuites();

Completed in 197 milliseconds