Searched refs:setEnabledCipherSuites (Results 1 - 25 of 36) 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.java88 socket.setEnabledCipherSuites(new String[] {
116 socket.setEnabledCipherSuites(new String[] {
148 socket.setEnabledCipherSuites(new String[] {
191 socket.setEnabledCipherSuites(new String[] {
197 socket.setEnabledCipherSuites(new String[] {
210 sslSocket.setEnabledCipherSuites(new String[] {
247 socket.setEnabledCipherSuites(new String[] {
H A DDelegatingSSLSocket.java56 @Override public void setEnabledCipherSuites(String[] suites) { method in class:DelegatingSSLSocket
57 delegate.setEnabledCipherSuites(suites);
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DConscryptServerSocket.java142 public void setEnabledCipherSuites(String[] suites) { method in class:ConscryptServerSocket
143 sslParameters.setEnabledCipherSuites(suites);
H A DConscryptEngineSocket.java270 public void setEnabledCipherSuites(String[] suites) { method in class:ConscryptEngineSocket
271 engine.setEnabledCipherSuites(suites);
H A DConscryptFileDescriptorSocket.java699 public void setEnabledCipherSuites(String[] suites) { method in class:ConscryptFileDescriptorSocket
700 sslParameters.setEnabledCipherSuites(suites);
H A DSSLParametersImpl.java216 void setEnabledCipherSuites(String[] cipherSuites) { method in class:SSLParametersImpl
H A DSslWrapper.java316 NativeCrypto.setEnabledCipherSuites(ssl, parameters.enabledCipherSuites);
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
H A DSSLServerSocketTest.java42 socket.setEnabledCipherSuites(cipherSuites);
52 socket.setEnabledCipherSuites(array);
H A DSSLEngineTest.java207 client.setEnabledCipherSuites(cipherSuiteArray);
208 server.setEnabledCipherSuites(cipherSuiteArray);
244 client.setEnabledCipherSuites(cipherSuiteArray);
245 server.setEnabledCipherSuites(cipherSuiteArray);
326 e.setEnabledCipherSuites(array);
337 e.setEnabledCipherSuites(null);
343 e.setEnabledCipherSuites(new String[1]);
349 e.setEnabledCipherSuites(new String[] {"Bogus"});
355 e.setEnabledCipherSuites(new String[0]);
356 e.setEnabledCipherSuites(
[all...]
H A DSSLSocketTest.java295 ssl.setEnabledCipherSuites(array);
305 ssl.setEnabledCipherSuites(null);
311 ssl.setEnabledCipherSuites(new String[1]);
317 ssl.setEnabledCipherSuites(new String[] {"Bogus"});
322 ssl.setEnabledCipherSuites(new String[0]);
323 ssl.setEnabledCipherSuites(ssl.getEnabledCipherSuites());
324 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites());
325 // Check that setEnabledCipherSuites affects getEnabledCipherSuites
327 ssl.setEnabledCipherSuites(cipherSuites);
508 client.setEnabledCipherSuites(ne
[all...]
H A DSSLSessionContextTest.java165 c.serverSocket.setEnabledCipherSuites(supportedCipherSuites);
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
H A DOpenSSLServerSocketImplTest.java68 sslSocket.setEnabledCipherSuites(new String[] {cipher});
100 socket.setEnabledCipherSuites(new String[] {CIPHER});
/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
H A DTestSSLSocketPair.java73 server.setEnabledCipherSuites(serverCipherSuites);
83 client.setEnabledCipherSuites(clientCipherSuites);
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
H A DClientEndpoint.java40 socket.setEnabledCipherSuites(ciphers);
H A DServerEndpoint.java125 socket.setEnabledCipherSuites(cipherSuites);
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackExt.java122 public void setEnabledCipherSuites(String[] newCipherSuites); method in interface:SipStackExt
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
H A DOpenSSLSocketImpl.java149 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImpl.java149 public void setEnabledCipherSuites(String[] suites) { method in class:OpenSSLSocketImpl
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DKitKatPlatformOpenSSLSocketImplAdapter.java288 public void setEnabledCipherSuites(String[] suites) { method in class:KitKatPlatformOpenSSLSocketImplAdapter
289 delegate.setEnabledCipherSuites(suites);
H A DPreKitKatPlatformOpenSSLSocketImplAdapter.java288 public void setEnabledCipherSuites(String[] suites) { method in class:PreKitKatPlatformOpenSSLSocketImplAdapter
289 delegate.setEnabledCipherSuites(suites);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DTLSMessageProcessor.java112 ((SSLServerSocket) this.sock).setEnabledCipherSuites(enabledCiphers);
/external/okhttp/android/test/java/com/squareup/okhttp/internal/
H A DPlatformTest.java173 public void setEnabledCipherSuites(String[] suites) { method in class:PlatformTest.TestSSLSocketImpl
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionSpec.java135 sslSocket.setEnabledCipherSuites(specToApply.cipherSuites);
/external/conscrypt/testing/src/main/java/org/conscrypt/
H A DTestUtils.java221 engine.setEnabledCipherSuites(new String[] {cipher});

Completed in 3708 milliseconds

12