/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/ |
D | SSLConfigurationAsserts.java | 90 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()
|
D | TestSSLContext.java | 452 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/ |
D | SSLServerSocketFactoryWrapper.java | 80 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in SSLServerSocketFactoryWrapper 81 return mFactory.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | SSLSocketFactoryWrapper.java | 110 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in SSLSocketFactoryWrapper 111 return mFactory.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLServerSocketFactoryImpl.java | 74 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLServerSocketFactoryImpl 75 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | ConscryptServerSocket.java | 110 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptServerSocket 111 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | OpenSSLSocketFactoryImpl.java | 78 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketFactoryImpl 79 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | ConscryptEngineSocket.java | 260 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptEngineSocket 261 return engine.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | ConscryptFileDescriptorSocket.java | 689 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in ConscryptFileDescriptorSocket 690 return NativeCrypto.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | BaseOpenSSLSocketAdapterFactory.java | 39 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in BaseOpenSSLSocketAdapterFactory 40 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | PreKitKatPlatformOpenSSLSocketImplAdapter.java | 278 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in PreKitKatPlatformOpenSSLSocketImplAdapter 279 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | KitKatPlatformOpenSSLSocketImplAdapter.java | 278 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in KitKatPlatformOpenSSLSocketImplAdapter 279 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
/external/conscrypt/testing/src/main/java/tests/net/ |
D | DelegatingSSLSocketFactory.java | 45 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocketFactory 46 return mDelegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | DelegatingSSLSocketFactory.java | 69 @Override public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocketFactory 70 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | DelegatingSSLSocket.java | 48 @Override public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in DelegatingSSLSocket 49 return delegate.getSupportedCipherSuites(); in getSupportedCipherSuites()
|
D | ConnectionSpecTest.java | 134 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/ |
D | SSLSocketFactoryTest.java | 62 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites()); in test_SSLSocketFactory_getSupportedCipherSuitesReturnsCopies()
|
D | SSLEngineTest.java | 65 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();
|
D | SSLServerSocketTest.java | 41 String[] cipherSuites = new String[] {socket.getSupportedCipherSuites()[0]}; in testSetEnabledCipherSuitesAffectsGetter()
|
D | HttpsURLConnectionTest.java | 134 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in HttpsURLConnectionTest.FakeSSLSocketFactory
|
D | SSLSocketTest.java | 160 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/ |
D | OpenSSLSocketImpl.java | 139 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketImpl
|
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
D | OpenSSLSocketImpl.java | 139 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in OpenSSLSocketImpl
|
/external/okhttp/android/test/java/com/squareup/okhttp/internal/ |
D | PlatformTest.java | 163 public String[] getSupportedCipherSuites() { in getSupportedCipherSuites() method in PlatformTest.TestSSLSocketImpl
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | ConnectionSpec.java | 153 if (isFallback && contains(sslSocket.getSupportedCipherSuites(), "TLS_FALLBACK_SCSV")) { in supportedSpec()
|