HomeSort by relevance Sort by last modified time
    Searched refs:getSupportedCipherSuites (Results 1 - 25 of 59) sorted by null

1 2 3

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLServerSocketFactoryImpl.java 49 public String[] getSupportedCipherSuites() {
50 return NativeCrypto.getSupportedCipherSuites();
OpenSSLSocketFactoryImpl.java 52 public String[] getSupportedCipherSuites() {
53 return NativeCrypto.getSupportedCipherSuites();
SSLServerSocketFactoryImpl.java 69 * @see javax.net.ssl.SSLServerSocketFactory#getSupportedCipherSuites()
72 public String[] getSupportedCipherSuites() {
OpenSSLServerSocketImpl.java 107 public String[] getSupportedCipherSuites() {
108 return NativeCrypto.getSupportedCipherSuites();
118 * getSupportedCipherSuites().
SSLServerSocketImpl.java 96 * @see javax.net.ssl.SSLServerSocket#getSupportedCipherSuites()
100 public String[] getSupportedCipherSuites() {
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLServerSocketFactoryTest.java 40 public String[] getSupportedCipherSuites() {
95 * javax.net.ssl.SSLServerSocketFactory#getSupportedCipherSuites()
101 assertTrue(ssf.getSupportedCipherSuites().length > 0);
SSLServerSocketTest.java 64 public String[] getSupportedCipherSuites() {
249 * javax.net.ssl.SSLServerSocket#getSupportedCipherSuites()
253 String[] res = sss.getSupportedCipherSuites();
276 int count = sss.getSupportedCipherSuites().length;
278 sss.setEnabledCipherSuites(sss.getSupportedCipherSuites());
282 Arrays.asList(sss.getSupportedCipherSuites()),
292 String[] res = sss.getSupportedCipherSuites();
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultSSLServerSocketFactory.java 43 public String[] getSupportedCipherSuites() {
SSLServerSocket.java 104 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
119 public abstract String[] getSupportedCipherSuites();
SSLServerSocketFactory.java 98 public abstract String[] getSupportedCipherSuites();
DefaultSSLSocketFactory.java 45 public String[] getSupportedCipherSuites() {
SSLContextSpi.java 144 cipherSuites = s.getSupportedCipherSuites();
SSLSocketFactory.java 100 public abstract String[] getSupportedCipherSuites();
SSLSocket.java 140 public abstract String[] getSupportedCipherSuites();
149 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFactoriesTest.java 73 assertNotNull(ssfactory.getSupportedCipherSuites());
77 assertNotNull(sfactory.getSupportedCipherSuites());
202 * SSLSocketFactory.getSupportedCipherSuites() method testing.
207 String[] supported = socketFactory.getSupportedCipherSuites();
210 supported = socketFactory.getSupportedCipherSuites();
220 * SSLServerSocketFactory.getSupportedCipherSuites() method testing.
225 String[] supported = serverSocketFactory.getSupportedCipherSuites();
228 supported = serverSocketFactory.getSupportedCipherSuites();
243 String[] supported = socketFactory.getSupportedCipherSuites();
266 String[] supported = serverSocketFactory.getSupportedCipherSuites();
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 47 String[] cipherSuites = sf.getSupportedCipherSuites();
49 assertNotSame(cipherSuites, sf.getSupportedCipherSuites());
SSLEngineTest.java 63 String[] cipherSuites = e.getSupportedCipherSuites();
66 assertNotSame(cipherSuites, e.getSupportedCipherSuites());
86 String[] cipherSuites = c.clientContext.createSSLEngine().getSupportedCipherSuites();
161 e.setEnabledCipherSuites(e.getSupportedCipherSuites());
408 String[] supportedCipherSuites = e.getSupportedCipherSuites();
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLServerSocketTest.java 109 public String[] getSupportedCipherSuites() {
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
DefaultSSLServerSocketFactoryTest.java 86 String[] res = f.getSupportedCipherSuites();
DefaultSSLSocketFactoryTest.java 105 String[] res = f.getSupportedCipherSuites();
SSLServerSocketFactoryTest.java 84 if (factory.getSupportedCipherSuites().length != 0) {
SSLSocketFactoryTest.java 84 if (factory.getSupportedCipherSuites().length != 0) {
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 42 public String[] getSupportedCipherSuites() {
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 43 mFactory.getSupportedCipherSuites();
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 423 return getDelegate().getSupportedCipherSuites();
427 public String[] getSupportedCipherSuites() {
428 return getDelegate().getSupportedCipherSuites();

Completed in 204 milliseconds

1 2 3