/libcore/ojluni/src/main/java/javax/net/ssl/ |
D | SSLServerSocket.java | 229 public abstract void setEnabledCipherSuites(String suites []); in setEnabledCipherSuites() method in SSLServerSocket 510 setEnabledCipherSuites(s); in setSSLParameters()
|
D | SSLSocket.java | 1047 public abstract void setEnabledCipherSuites(String suites []); in setEnabledCipherSuites() method in SSLSocket 1381 setEnabledCipherSuites(s); in setSSLParameters()
|
D | SSLEngine.java | 1554 public abstract void setEnabledCipherSuites(String suites []); in setEnabledCipherSuites() method in SSLEngine 1883 setEnabledCipherSuites(s); in setSSLParameters()
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
D | SSLServerSocketTest.java | 35 socket.setEnabledCipherSuites(cipherSuites); in testSetEnabledCipherSuitesAffectsGetter() 44 socket.setEnabledCipherSuites(array); in testSetEnabledCipherSuitesStoresCopy()
|
D | SSLEngineTest.java | 216 client.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 217 server.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 255 client.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 256 server.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 334 e.setEnabledCipherSuites(array); in test_SSLEngine_setEnabledCipherSuites_storesCopy() 344 e.setEnabledCipherSuites(null); in test_SSLEngine_setEnabledCipherSuites() 349 e.setEnabledCipherSuites(new String[1]); in test_SSLEngine_setEnabledCipherSuites() 354 e.setEnabledCipherSuites(new String[] { "Bogus" } ); in test_SSLEngine_setEnabledCipherSuites() 359 e.setEnabledCipherSuites(new String[0]); in test_SSLEngine_setEnabledCipherSuites() 360 e.setEnabledCipherSuites(e.getEnabledCipherSuites()); in test_SSLEngine_setEnabledCipherSuites() [all …]
|
D | SSLSocketTest.java | 233 ssl.setEnabledCipherSuites(array); in test_SSLSocket_setEnabledCipherSuites_storesCopy() 243 ssl.setEnabledCipherSuites(null); in test_SSLSocket_setEnabledCipherSuites() 248 ssl.setEnabledCipherSuites(new String[1]); in test_SSLSocket_setEnabledCipherSuites() 253 ssl.setEnabledCipherSuites(new String[] { "Bogus" } ); in test_SSLSocket_setEnabledCipherSuites() 258 ssl.setEnabledCipherSuites(new String[0]); in test_SSLSocket_setEnabledCipherSuites() 259 ssl.setEnabledCipherSuites(ssl.getEnabledCipherSuites()); in test_SSLSocket_setEnabledCipherSuites() 260 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites()); in test_SSLSocket_setEnabledCipherSuites() 264 ssl.setEnabledCipherSuites(cipherSuites); in test_SSLSocket_setEnabledCipherSuites() 442 client.setEnabledCipherSuites(new String[0]); in test_SSLSocket_NoEnabledCipherSuites_Failure() 1122 client.setEnabledCipherSuites(new String[0]); in test_SSLSocket_close() [all …]
|
D | SSLSessionContextTest.java | 171 c.serverSocket.setEnabledCipherSuites(supportedCipherSuites); in test_SSLSessionContext_setSessionCacheSize_dynamic()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
D | SSLServerSocketTest.java | 66 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in SSLServerSocketTest.mySSLServerSocket 215 sss.setEnabledCipherSuites(null); in test_EnabledCipherSuites() 221 sss.setEnabledCipherSuites(unsupportedCipherSuites); in test_EnabledCipherSuites() 227 sss.setEnabledCipherSuites(sss.getSupportedCipherSuites()); in test_EnabledCipherSuites()
|
D | SSLSocketTest.java | 360 ssl.setEnabledCipherSuites(null); in test_EnabledCipherSuites() 364 ssl.setEnabledCipherSuites(new String[] {}); in test_EnabledCipherSuites() 366 ssl.setEnabledCipherSuites(new String[] {"blubb"}); in test_EnabledCipherSuites() 370 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites()); in test_EnabledCipherSuites()
|
D | SSLEngineTest.java | 64 e.setEnabledCipherSuites(suites); in test_Constructor() 101 e.setEnabledCipherSuites(suites); in test_ConstructorLjava_lang_StringI02() 176 sse.setEnabledCipherSuites(st); in test_EnabledCipherSuites() 183 sse.setEnabledCipherSuites(null); in test_EnabledCipherSuites()
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
D | TestSSLSocketPair.java | 83 server.setEnabledCipherSuites(serverCipherSuites); in connect() 92 client.setEnabledCipherSuites(clientCipherSuites); in connect()
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
D | MySSLContextSpi.java | 142 public void setEnabledCipherSuites(String[] suites) { } in setEnabledCipherSuites() method in MySSLContextSpi.tmpSSLEngine
|
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
D | MySSLContextSpi.java | 140 public void setEnabledCipherSuites(String[] suites) { } in setEnabledCipherSuites() method in MySSLContextSpi.tmpSSLEngine
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
D | SSLServerSocketImpl.java | 190 synchronized public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in SSLServerSocketImpl
|
D | SSLEngineImpl.java | 471 handshaker.setEnabledCipherSuites(enabledCipherSuites); in initHandshaker() 1982 synchronized public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in SSLEngineImpl 1985 handshaker.setEnabledCipherSuites(enabledCipherSuites); in setEnabledCipherSuites()
|
D | SSLSocketImpl.java | 1272 handshaker.setEnabledCipherSuites(enabledCipherSuites); in initHandshaker() 2353 synchronized public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in SSLSocketImpl 2356 handshaker.setEnabledCipherSuites(enabledCipherSuites); in setEnabledCipherSuites()
|
D | Handshaker.java | 388 void setEnabledCipherSuites(CipherSuiteList enabledCipherSuites) { in setEnabledCipherSuites() method in Handshaker
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/https/ |
D | HttpsClient.java | 471 s.setEnabledCipherSuites(ciphers);
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | URLConnectionTest.java | 3235 @Override public void setEnabledCipherSuites(String[] suites) { 3236 delegate.setEnabledCipherSuites(suites); 3558 @Override public void setEnabledCipherSuites(String[] suites) { 3569 delegate.setEnabledCipherSuites(
|