Home
last modified time | relevance | path

Searched refs:getSupportedCipherSuites (Results 1 – 25 of 29) sorted by relevance

12

/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
DSSLConfigurationAsserts.java90 sslSocketFactory.getSupportedCipherSuites()); in assertSSLSocketFactoryConfigSameAsSSLContext()
116 assertCipherSuitesEqual(sslSocket.getSupportedCipherSuites(), in assertSSLSocketConfigSameAsSSLContext()
143 sslServerSocketFactory.getSupportedCipherSuites()); in assertSSLServerSocketFactoryConfigSameAsSSLContext()
171 assertCipherSuitesEqual(sslServerSocket.getSupportedCipherSuites(), in assertSSLServerSocketConfigSameAsSSLContext()
199 assertCipherSuitesEqual(sslEngine.getSupportedCipherSuites(), in assertSSLEngineConfigSameAsSSLContext()
DTestSSLContext.java452 public String[] getSupportedCipherSuites() { in clientAuth() method in TestSSLContext
453 return sf.getSupportedCipherSuites(); in clientAuth()
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
DSSLServerSocketFactoryWrapper.java80 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in SSLServerSocketFactoryWrapper
81 return mFactory.getSupportedCipherSuites(); in getSupportedCipherSuites()
DSSLSocketFactoryWrapper.java110 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in SSLSocketFactoryWrapper
111 return mFactory.getSupportedCipherSuites(); in getSupportedCipherSuites()
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLServerSocketFactoryImpl.java74 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLServerSocketFactoryImpl
75 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
DConscryptServerSocket.java110 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptServerSocket
111 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
DOpenSSLSocketFactoryImpl.java78 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketFactoryImpl
79 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
DConscryptEngineSocket.java260 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptEngineSocket
261 return engine.getSupportedCipherSuites(); in getSupportedCipherSuites()
DConscryptFileDescriptorSocket.java689 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptFileDescriptorSocket
690 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
/external/conscrypt/android/src/main/java/org/conscrypt/
DBaseOpenSSLSocketAdapterFactory.java39 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in BaseOpenSSLSocketAdapterFactory
40 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
DPreKitKatPlatformOpenSSLSocketImplAdapter.java278 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in PreKitKatPlatformOpenSSLSocketImplAdapter
279 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
DKitKatPlatformOpenSSLSocketImplAdapter.java278 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in KitKatPlatformOpenSSLSocketImplAdapter
279 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
/external/conscrypt/testing/src/main/java/tests/net/
DDelegatingSSLSocketFactory.java45 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocketFactory
46 return mDelegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DDelegatingSSLSocketFactory.java69 @Override public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocketFactory
70 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
DDelegatingSSLSocket.java48 @Override public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocket
49 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
DConnectionSpecTest.java134 if (Arrays.asList(socket.getSupportedCipherSuites()).contains("TLS_FALLBACK_SCSV")) { in tls_defaultCiphers_withFallbackIndicator()
163 if (Arrays.asList(socket.getSupportedCipherSuites()).contains("TLS_FALLBACK_SCSV")) { in tls_explicitCiphers()
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
DSSLSocketFactoryTest.java62 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites()); in test_SSLSocketFactory_getSupportedCipherSuitesReturnsCopies()
DSSLEngineTest.java65 assertNotSame(e.getSupportedCipherSuites(), e.getSupportedCipherSuites()); in test_SSLEngine_getSupportedCipherSuites_returnsCopies()
171 String[] cipherSuites = c.clientContext.createSSLEngine().getSupportedCipherSuites(); in test_SSLEngine_getSupportedCipherSuites_connect()
357 e.setEnabledCipherSuites(e.getSupportedCipherSuites()); in test_SSLEngine_setEnabledCipherSuites()
360 String[] cipherSuites = new String[] {e.getSupportedCipherSuites()[0]}; in test_SSLEngine_setEnabledCipherSuites()
773 String[] supportedCipherSuites = e.getSupportedCipherSuites();
DSSLServerSocketTest.java41 String[] cipherSuites = new String[] {socket.getSupportedCipherSuites()[0]}; in testSetEnabledCipherSuitesAffectsGetter()
DHttpsURLConnectionTest.java134 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in HttpsURLConnectionTest.FakeSSLSocketFactory
DSSLSocketTest.java160 assertNotSame(ssl.getSupportedCipherSuites(), ssl.getSupportedCipherSuites()); in test_SSLSocket_getSupportedCipherSuites_returnsCopies()
208 String[] cipherSuites = c.clientContext.getSocketFactory().getSupportedCipherSuites(); in test_SSLSocket_getSupportedCipherSuites_connect()
324 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites()); in test_SSLSocket_setEnabledCipherSuites()
326 String[] cipherSuites = new String[] {ssl.getSupportedCipherSuites()[0]}; in test_SSLSocket_setEnabledCipherSuites()
1325 String[] supportedCipherSuites = ssl.getSupportedCipherSuites(); in test_SSLSocket_setSSLParameters()
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
DOpenSSLSocketImpl.java139 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketImpl
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
DOpenSSLSocketImpl.java139 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketImpl
/external/okhttp/android/test/java/com/squareup/okhttp/internal/
DPlatformTest.java163 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in PlatformTest.TestSSLSocketImpl
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DConnectionSpec.java153 if (isFallback && contains(sslSocket.getSupportedCipherSuites(), "TLS_FALLBACK_SCSV")) { in supportedSpec()

12