HomeSort by relevance Sort by last modified time
    Searched refs:getSupportedCipherSuites (Results 1 - 25 of 61) 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();
132 * 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 62 public String[] getSupportedCipherSuites() {
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();
  /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());
  /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 492 return getDelegate().getSupportedCipherSuites();
496 public String[] getSupportedCipherSuites() {
497 return getDelegate().getSupportedCipherSuites();
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MySSLContextSpi.java 137 public String[] getSupportedCipherSuites() { return null; }

Completed in 135 milliseconds

1 2 3