HomeSort by relevance Sort by last modified time
    Searched refs:suites (Results 1 - 25 of 36) sorted by null

1 2

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_server.c 312 u16 *suites; local
330 suites = conn->cipher_suites;
332 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
334 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
335 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
336 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
337 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
541 * tlsv1_server_set_cipher_list - Configure acceptable cipher suites
551 u16 *suites; local
553 /* TODO: implement proper configuration of cipher suites */
    [all...]
tlsv1_client.c 337 u16 *suites; local
353 suites = conn->cipher_suites;
355 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
357 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
358 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
359 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
360 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
600 * tlsv1_client_set_cipher_list - Configure acceptable cipher suites
610 u16 *suites; local
612 /* TODO: implement proper configuration of cipher suites */
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server.c 312 u16 *suites; local
330 suites = conn->cipher_suites;
332 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
334 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
335 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
336 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
337 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
541 * tlsv1_server_set_cipher_list - Configure acceptable cipher suites
550 u16 *suites; local
552 /* TODO: implement proper configuration of cipher suites */
    [all...]
tlsv1_client.c 337 u16 *suites; local
353 suites = conn->cipher_suites;
355 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
357 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
358 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
359 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
360 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
600 * tlsv1_client_set_cipher_list - Configure acceptable cipher suites
609 u16 *suites; local
611 /* TODO: implement proper configuration of cipher suites */
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 50 CipherSuite[] suites = CipherSuite.getSupported(); local
51 for (int i = 0; i < suites.length; i++) {
52 assertEquals("incorrect cipher suite returned", suites[i],
53 CipherSuite.getByName(suites[i].getName()));
63 CipherSuite[] suites = CipherSuite.getSupported(); local
64 for (int i = 0; i < suites.length; i++) {
65 byte[] code = suites[i].toBytes();
66 assertEquals("incorrect cipher suite returned", suites[i],
78 CipherSuite[] suites = CipherSuite.getSupported(); local
79 for (int i = 0; i < suites.length; i++)
107 CipherSuite[] suites = CipherSuite.getSupported(); local
114 CipherSuite[] suites = CipherSuite.getSupported(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
mkhtml.pl 22 $suites[$#suites+1] = $_;
26 die ( "Specify a directory: ". join(" ", @suites) ."\n" );
mklistpage.pl 59 $javascript .= "suites = new Object();\n";
61 $html .= "<h3>Test Suites:</h3>\n";
109 $javascript .= "suites[\"$suite\"] = {testDirs: {}};\n";
152 $javascript .= "suites[\"$suite\"].testDirs[\"$test_dir\"] = {tests: {}};\n";
201 $javascript .= "suites[\"$suite\"].testDirs[\"$test_dir\"].tests" .
  /external/webkit/PerformanceTests/SunSpider/
make-hosted 40 my @suites = ("sunspider-0.9", "sunspider-0.9.1");
42 foreach my $suite (@suites) {
  /external/webkit/Tools/Scripts/
check-dom-results 44 my @suites = ( {"name" => "DOM Level 1 Core (html)", "directory" => "dom/html/level1/core"},
60 foreach my $suite (@suites) {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocket.java 94 * Returns the names of the enabled cipher suites to be used for new
97 * @return the names of the enabled cipher suites to be used for new
103 * Sets the names of the cipher suites to be enabled for new connections.
104 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
107 * @param suites
108 * the names of the to be enabled cipher suites.
112 public abstract void setEnabledCipherSuites(String[] suites);
115 * Returns the names of the supported cipher suites.
117 * @return the names of the supported cipher suites.
SSLSocket.java 138 * Returns the names of the supported cipher suites.
143 * Returns the names of the enabled cipher suites.
148 * Sets the names of the cipher suites to be enabled.
149 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
152 * @param suites
153 * the names of the to be enabled cipher suites.
157 public abstract void setEnabledCipherSuites(String[] suites);
293 * cipher suites, protocols, and client authentication settings.
309 * suites if the parameter's cipher suites are non-null. Similarl
    [all...]
SSLEngine.java 167 * These cipher suites can be enabled using
217 * instance. Only cipher suites listed by {@code getSupportedCipherSuites()}
220 * @param suites
223 * if one of the specified cipher suites is not supported, or if
224 * {@code suites} is {@code null}.
226 public abstract void setEnabledCipherSuites(String[] suites);
467 * cipher suites, protocols, and client authentication settings.
483 * suites if the parameter's cipher suites are non-null. Similarly
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImpl.java 32 // about supported and enabled cipher suites and protocols,
120 public void setEnabledCipherSuites(String[] suites) {
121 sslParameters.setEnabledCipherSuites(suites);
SSLParametersImpl.java 36 * about enabled cipher suites and protocols,
66 // cipher suites available for SSL connection
68 // string representations of available cipher suites
213 * @return the names of enabled cipher suites
227 * Sets the set of available cipher suites for use in SSL connection.
228 * @param suites: String[]
231 protected void setEnabledCipherSuites(String[] suites) {
232 if (suites == null) {
233 throw new IllegalArgumentException("suites == null");
235 CipherSuite[] cipherSuites = new CipherSuite[suites.length]
    [all...]
OpenSSLServerSocketImpl.java 120 * This method enables the cipher suites listed by
123 * @param suites the names of all the cipher suites to enable
125 * suites are not supported, or when the array is null.
128 public void setEnabledCipherSuites(String[] suites) {
129 enabledCipherSuites = NativeCrypto.checkEnabledCipherSuites(suites);
144 * @param suites the names of all the compression methods to enable
146 * suites are not supported, or when the array is null.
198 * Check if any of the enabled cipher suites has a chance to work.
202 /* Loop over all enabled cipher suites. If we find a problem
    [all...]
  /external/v8/benchmarks/
base.js 29 // Simple framework for running the benchmark suites and
62 // Suites of benchmarks consist of a name and the set of benchmarks in
70 BenchmarkSuite.suites.push(this);
74 // Keep track of all declared benchmark suites.
75 BenchmarkSuite.suites = [];
101 // Runs all registered benchmark suites and optionally yields between
107 var suites = BenchmarkSuite.suites;
108 var length = suites.length;
116 var suite = suites[index++]
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 47 String[] suites = { "a", "b", "c" }; local
48 e.setEnabledCipherSuites(suites);
49 assertEquals(e.getEnabledCipherSuites().length, suites.length);
75 String[] suites = { "a", "b", "c" }; local
76 e.setEnabledCipherSuites(suites);
77 assertEquals(e.getEnabledCipherSuites().length, suites.length);
454 public void setEnabledCipherSuites(String[] suites) {
455 enabledCipherSuites = suites;
SSLServerSocketTest.java 105 public void setEnabledCipherSuites(String[] suites) {
SSLSocketTest.java 141 public void setEnabledCipherSuites(String[] suites) {
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 117 CipherSuite[] suites = CipherSuite.getSupported(); local
118 List<String> names = new ArrayList<String>(suites.length);
119 for (CipherSuite cs : suites) {
  /cts/tools/host/src/com/android/cts/
TestPackage.java 149 * Get test suites under this package.
151 * @return The test suites under this package.
188 * Get all of test suites under this package.
190 * @return All of the test suites under this package.
193 Collection<TestSuite> suites = new ArrayList<TestSuite>(); local
195 suites.addAll(suite.getAllSuites());
197 return suites;
469 //all suites contained have been excluded,
914 Iterator<TestSuite> suites = getTestSuites().iterator(); local
915 while (suites.hasNext() && (!mTestStop))
    [all...]
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MySSLContextSpi.java 149 public void setEnabledCipherSuites(String[] suites) { }
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySSLContextSpi.java 142 public void setEnabledCipherSuites(String[] suites) { }
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 140 public void setEnabledCipherSuites(String[] suites) { }
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 157 public void setEnabledCipherSuites(String[] suites) { }

Completed in 1478 milliseconds

1 2