Searched defs:getSupportedCipherSuites (Results 1 - 13 of 13) 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();
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLServerSocketFactory.java158 * @see #getSupportedCipherSuites()
175 public abstract String [] getSupportedCipherSuites(); method in class:SSLServerSocketFactory
229 public String [] getSupportedCipherSuites() { method in class:DefaultSSLServerSocketFactory
H A DSSLSocketFactory.java175 * @see #getSupportedCipherSuites()
190 public abstract String [] getSupportedCipherSuites(); method in class:SSLSocketFactory
278 public String [] getSupportedCipherSuites() { method in class:DefaultSSLSocketFactory
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 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()}.
1514 public abstract String [] getSupportedCipherSuites(); method in class:SSLEngine
1529 * @see #getSupportedCipherSuites()
1539 * been listed by getSupportedCipherSuites(), or the method will
1550 * @see #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/support/src/test/java/tests/net/
H A DDelegatingSSLSocketFactory.java54 public String[] getSupportedCipherSuites() { method in class:DelegatingSSLSocketFactory
55 return mDelegate.getSupportedCipherSuites();
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketFactoryTest.java109 public String[] getSupportedCipherSuites() { method in class:SSLSocketFactoryTest.FakeSSLSocketFactory
224 assertNotSame(sf.getSupportedCipherSuites(), sf.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.java3197 public String[] getSupportedCipherSuites() { method in class:URLConnectionTest.DelegatingSSLSocketFactory
3198 return delegate.getSupportedCipherSuites();
3374 @Override public String[] getSupportedCipherSuites() { method in class:URLConnectionTest.DelegatingSSLSocket
3375 return delegate.getSupportedCipherSuites();

Completed in 969 milliseconds