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

12

/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketFactoryImpl.java49 public String[] getSupportedCipherSuites() { method in class:OpenSSLServerSocketFactoryImpl
50 return NativeCrypto.getSupportedCipherSuites();
H A DOpenSSLSocketFactoryImpl.java52 public String[] getSupportedCipherSuites() { method in class:OpenSSLSocketFactoryImpl
53 return NativeCrypto.getSupportedCipherSuites();
H A DSSLServerSocketFactoryImpl.java69 * @see javax.net.ssl.SSLServerSocketFactory#getSupportedCipherSuites()
72 public String[] getSupportedCipherSuites() { method in class:SSLServerSocketFactoryImpl
H A DOpenSSLServerSocketImpl.java107 public String[] getSupportedCipherSuites() { method in class:OpenSSLServerSocketImpl
108 return NativeCrypto.getSupportedCipherSuites();
132 * getSupportedCipherSuites().
H A DSSLServerSocketImpl.java96 * @see javax.net.ssl.SSLServerSocket#getSupportedCipherSuites()
100 public String[] getSupportedCipherSuites() { method in class:SSLServerSocketImpl
H A DSSLSocketFactoryImpl.java72 * @see javax.net.ssl.SSLSocketFactory#getSupportedCipherSuites()
75 public String[] getSupportedCipherSuites() { method in class:SSLSocketFactoryImpl
/libcore/luni/src/test/java/tests/api/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.java62 public String[] getSupportedCipherSuites() { method in class:SSLServerSocketTest.mySSLServerSocket
198 * javax.net.ssl.SSLServerSocket#getSupportedCipherSuites()
202 String[] res = sss.getSupportedCipherSuites();
225 int count = sss.getSupportedCipherSuites().length;
227 sss.setEnabledCipherSuites(sss.getSupportedCipherSuites());
231 Arrays.asList(sss.getSupportedCipherSuites()),
241 String[] res = sss.getSupportedCipherSuites();
H A DSSLSocketFactoryTest.java127 * javax.net.ssl.SSLSocketFactory#getSupportedCipherSuites()
133 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()),
/libcore/luni/src/main/java/javax/net/ssl/
H A DDefaultSSLServerSocketFactory.java43 public String[] getSupportedCipherSuites() { method in class:DefaultSSLServerSocketFactory
H A DSSLServerSocket.java104 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
119 public abstract String[] getSupportedCipherSuites(); method in class:SSLServerSocket
H A DSSLServerSocketFactory.java98 public abstract String[] getSupportedCipherSuites(); method in class:SSLServerSocketFactory
H A DDefaultSSLSocketFactory.java45 public String[] getSupportedCipherSuites() { method in class:DefaultSSLSocketFactory
H A DSSLContextSpi.java144 cipherSuites = s.getSupportedCipherSuites();
H A DSSLSocketFactory.java100 public abstract String[] getSupportedCipherSuites(); method in class:SSLSocketFactory
H A DSSLSocket.java140 public abstract String[] getSupportedCipherSuites(); method in class:SSLSocket
149 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
H A DSSLEngine.java172 public abstract String[] getSupportedCipherSuites(); method in class:SSLEngine
217 * instance. Only cipher suites listed by {@code getSupportedCipherSuites()}
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketFactoryTest.java47 String[] cipherSuites = sf.getSupportedCipherSuites();
49 assertNotSame(cipherSuites, sf.getSupportedCipherSuites());
H A DSSLEngineTest.java65 String[] cipherSuites = e.getSupportedCipherSuites();
68 assertNotSame(cipherSuites, e.getSupportedCipherSuites());
102 String[] cipherSuites = c.clientContext.createSSLEngine().getSupportedCipherSuites();
200 e.setEnabledCipherSuites(e.getSupportedCipherSuites());
492 String[] supportedCipherSuites = e.getSupportedCipherSuites();
H A DSSLSocketTest.java65 String[] cipherSuites = ssl.getSupportedCipherSuites();
67 assertNotSame(cipherSuites, ssl.getSupportedCipherSuites());
133 cipherSuites = c.clientContext.getSocketFactory().getSupportedCipherSuites();
135 String[] clientSuites = c.clientContext.getSocketFactory().getSupportedCipherSuites();
136 String[] serverSuites = c.serverContext.getSocketFactory().getSupportedCipherSuites();
239 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites());
953 String[] supportedCipherSuites = ssl.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/org/apache/harmony/security/tests/support/
H A DMySSLContextSpi.java136 public String[] getSupportedCipherSuites() { return null; } method in class:MySSLContextSpi.tmpSSLEngine
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestSSLContext.java295 public String[] getSupportedCipherSuites() {
296 return sf.getSupportedCipherSuites();

Completed in 7885 milliseconds

12