Searched refs:setEnabledCipherSuites (Results 1 - 25 of 35) sorted by relevance

12

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DFallbackTestClientSocketFactory.java53 @Override public void setEnabledCipherSuites(String[] suites) { method in class:FallbackTestClientSocketFactory.TlsFallbackScsvDisabledSSLSocket
60 delegate.setEnabledCipherSuites(
H A DConnectionSpecTest.java70 socket.setEnabledCipherSuites(new String[] {
99 socket.setEnabledCipherSuites(new String[] {
132 socket.setEnabledCipherSuites(new String[] {
176 socket.setEnabledCipherSuites(new String[] {
182 socket.setEnabledCipherSuites(new String[] {
197 socket.setEnabledCipherSuites(new String[] {
H A DDelegatingSSLSocket.java56 @Override public void setEnabledCipherSuites(String[] suites) { method in class:DelegatingSSLSocket
57 delegate.setEnabledCipherSuites(suites);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketImpl.java132 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLServerSocketImpl
133 sslParameters.setEnabledCipherSuites(suites);
H A DOpenSSLEngineImpl.java339 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLEngineImpl
340 sslParameters.setEnabledCipherSuites(suites);
H A DOpenSSLSocketImpl.java911 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
912 sslParameters.setEnabledCipherSuites(suites);
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketFunctionalTest.java79 ssocket.setEnabledCipherSuites(
89 csocket.setEnabledCipherSuites(
117 ssocket.setEnabledCipherSuites(
127 csocket.setEnabledCipherSuites(
151 ssocket.setEnabledCipherSuites(
159 csocket.setEnabledCipherSuites(
H A DSSLServerSocketImplTest.java345 ssocket.setEnabledCipherSuites(supported);
350 ssocket.setEnabledCipherSuites(enabled);
373 * setEnabledCipherSuites(String[] suites) method testing.
393 ssocket.setEnabledCipherSuites(supported);
394 ssocket.setEnabledCipherSuites(enabled);
395 ssocket.setEnabledCipherSuites(supported);
405 ssocket.setEnabledCipherSuites(more_than_supported);
H A DSSLEngineImplTest.java218 engine.setEnabledCipherSuites(supported);
223 engine.setEnabledCipherSuites(enabled);
246 * setEnabledCipherSuites(String[] suites) method testing.
265 engine.setEnabledCipherSuites(supported);
266 engine.setEnabledCipherSuites(enabled);
267 engine.setEnabledCipherSuites(supported);
277 engine.setEnabledCipherSuites(more_than_supported);
1375 client.setEnabledCipherSuites(
1377 server.setEnabledCipherSuites(
H A DSSLSocketFactoriesTest.java126 ssocket.setEnabledCipherSuites(enabled);
195 csocket.setEnabledCipherSuites(enabled);
H A DSSLSocketImplTest.java429 socket.setEnabledCipherSuites(supported);
434 socket.setEnabledCipherSuites(enabled);
457 * setEnabledCipherSuites(String[] suites) method testing.
476 socket.setEnabledCipherSuites(supported);
477 socket.setEnabledCipherSuites(enabled);
478 socket.setEnabledCipherSuites(supported);
488 socket.setEnabledCipherSuites(more_than_supported);
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLServerSocketTest.java104 public void setEnabledCipherSuites(String[] suites) { method in class:MySSLServerSocket
H A DSSLEngineTest.java47 e.setEnabledCipherSuites(suites);
75 e.setEnabledCipherSuites(suites);
452 public void setEnabledCipherSuites(String[] suites) { method in class:mySSLEngine
H A DSSLSocketTest.java140 public void setEnabledCipherSuites(String[] suites) { method in class:MySSLSocket
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackExt.java122 public void setEnabledCipherSuites(String[] newCipherSuites); method in interface:SipStackExt
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DMySSLContextSpi.java199 public void setEnabledCipherSuites(String[] suites) { method in class:MySSLContextSpi.tmpSSLEngine
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java210 public void setEnabledCipherSuites(String[] suites) { method in class:MySSLContextSpi.tmpSSLEngine
/external/conscrypt/src/stub/java/com/android/org/conscrypt/
H A DOpenSSLSocketImpl.java145 @Override public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
/external/conscrypt/src/stub/java/org/apache/harmony/xnet/xnet/provider/jsse/
H A DOpenSSLSocketImpl.java145 @Override public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
/external/okhttp/android/test/java/com/squareup/okhttp/internal/
H A DPlatformTest.java137 public void setEnabledCipherSuites(String[] suites) { method in class:PlatformTest.TestSSLSocketImpl
/external/conscrypt/src/compat/java/org/conscrypt/
H A DKitKatPlatformOpenSSLSocketImplAdapter.java283 public void setEnabledCipherSuites(String[] suites) { method in class:KitKatPlatformOpenSSLSocketImplAdapter
284 delegate.setEnabledCipherSuites(suites);
H A DPreKitKatPlatformOpenSSLSocketImplAdapter.java283 public void setEnabledCipherSuites(String[] suites) { method in class:PreKitKatPlatformOpenSSLSocketImplAdapter
284 delegate.setEnabledCipherSuites(suites);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DTLSMessageProcessor.java112 ((SSLServerSocket) this.sock).setEnabledCipherSuites(enabledCiphers);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionSpec.java130 sslSocket.setEnabledCipherSuites(cipherSuitesToEnable);
/external/jetty/src/java/org/eclipse/jetty/util/ssl/
H A DSslContextFactory.java367 * {@link SSLEngine#setEnabledCipherSuites(String[])}
378 * {@link SSLEngine#setEnabledCipherSuites(String[])}
389 * @param cipher Cipher names to add to {@link SSLEngine#setEnabledCipherSuites(String[])}
400 * {@link SSLEngine#setEnabledCipherSuites(String[])}
411 * {@link SSLEngine#setEnabledCipherSuites(String[])}
1466 socket.setEnabledCipherSuites(selectCipherSuites(
1486 socket.setEnabledCipherSuites(selectCipherSuites(
1521 sslEngine.setEnabledCipherSuites(selectCipherSuites(

Completed in 457 milliseconds

12