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

1 2 3

  /external/conscrypt/src/compat/java/org/conscrypt/
BaseOpenSSLSocketAdapterFactory.java 39 public String[] getSupportedCipherSuites() {
40 return delegate.getSupportedCipherSuites();
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLServerSocketFactoryImpl.java 51 public String[] getSupportedCipherSuites() {
52 return NativeCrypto.getSupportedCipherSuites();
OpenSSLSocketFactoryImpl.java 54 public String[] getSupportedCipherSuites() {
55 return NativeCrypto.getSupportedCipherSuites();
OpenSSLServerSocketImpl.java 100 public String[] getSupportedCipherSuites() {
101 return NativeCrypto.getSupportedCipherSuites();
125 * getSupportedCipherSuites().
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSSLSocketFactory.java 76 public String[] getSupportedCipherSuites() {
77 return delegate.getSupportedCipherSuites();
  /libcore/support/src/test/java/tests/net/
DelegatingSSLSocketFactory.java 54 public String[] getSupportedCipherSuites() {
55 return mDelegate.getSupportedCipherSuites();
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
SSLServerSocketFactoryWrapper.java 80 public String[] getSupportedCipherSuites() {
81 return mFactory.getSupportedCipherSuites();
SSLSocketFactoryWrapper.java 110 public String[] getSupportedCipherSuites() {
111 return mFactory.getSupportedCipherSuites();
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 42 public String[] getSupportedCipherSuites() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/ojluni/src/main/java/javax/net/ssl/
SSLContextSpi.java 195 params.setCipherSuites(socket.getSupportedCipherSuites());
SSLServerSocket.java 201 * @see #getSupportedCipherSuites()
210 * The cipher suites must have been listed by getSupportedCipherSuites()
226 * @see #getSupportedCipherSuites()
245 public abstract String [] getSupportedCipherSuites();
SSLServerSocketFactory.java 158 * @see #getSupportedCipherSuites()
175 public abstract String [] getSupportedCipherSuites();
223 public String [] getSupportedCipherSuites() {
SSLEngine.java 301 * using {@link #getSupportedCipherSuites()}.
    [all...]
SSLSocket.java 91 * using <em>getSupportedCipherSuites</em>.
217 * {@link #getSupportedCipherSuites() getSupportedCipherSuites},
    [all...]
  /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();
267 String[] supported = serverSocketFactory.getSupportedCipherSuites();
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
SSLConfigurationAsserts.java 97 sslSocketFactory.getSupportedCipherSuites());
126 assertCipherSuitesEqual(sslSocket.getSupportedCipherSuites(),
153 sslServerSocketFactory.getSupportedCipherSuites());
184 assertCipherSuitesEqual(sslServerSocket.getSupportedCipherSuites(),
215 assertCipherSuitesEqual(sslEngine.getSupportedCipherSuites(),
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 47 mFactory.getSupportedCipherSuites();
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLServerSocketTest.java 108 public String[] getSupportedCipherSuites() {
SSLSocketTest.java 130 public String[] getSupportedCipherSuites() {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactoryWrapper.java 81 final String[] baseSupportedCipherSuites = mFactory.getSupportedCipherSuites();
83 mFactory.getSupportedCipherSuites()));
171 public String[] getSupportedCipherSuites() {
172 return mFactory.getSupportedCipherSuites();
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 109 public String[] getSupportedCipherSuites() {
220 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites());
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MySSLContextSpi.java 169 public String[] getSupportedCipherSuites() {
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 180 public String[] getSupportedCipherSuites() {

Completed in 1655 milliseconds

1 2 3