HomeSort by relevance Sort by last modified time
    Searched defs:algs (Results 1 - 25 of 29) sorted by null

1 2

  /external/ipsec-tools/src/racoon/
sainfo.h 61 struct sainfoalg *algs[MAXALGCLASS]; member in struct:sainfo
  /external/wpa_supplicant/
driver_hostap.c 407 int algs = 0; local
410 algs |= 1;
412 algs |= 2;
414 algs |= 4;
415 if (algs == 0)
416 algs = 1; /* at least one algorithm should be set */
418 return prism2param(drv, PRISM2_PARAM_AP_AUTH_ALGS, algs);
driver_ipw.c 350 int algs = 0; local
353 algs |= 1;
355 algs |= 2;
357 algs |= 4;
358 if (algs == 0)
359 algs = 1; /* at least one algorithm should be set */
361 wpa_printf(MSG_DEBUG, "%s: auth_alg=0x%x", __FUNCTION__, algs);
362 return ipw_set_wpa_param(drv, IPW_PARAM_AUTH_ALGS, algs);
tls_schannel.c 721 ALG_ID algs[1]; local
739 algs[0] = CALG_RSA_KEYX;
741 conn->schannel_cred.palgSupportedAlgs = algs;
wpa_supplicant.c 1383 int algs = AUTH_ALG_OPEN_SYSTEM; local
    [all...]
driver_wext.c 2033 int algs = 0, res; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_hostap.c 405 int algs = 0; local
408 algs |= 1;
410 algs |= 2;
412 algs |= 4;
413 if (algs == 0)
414 algs = 1; /* at least one algorithm should be set */
416 return prism2param(drv, PRISM2_PARAM_AP_AUTH_ALGS, algs);
driver_ipw.c 348 int algs = 0; local
351 algs |= 1;
353 algs |= 2;
355 algs |= 4;
356 if (algs == 0)
357 algs = 1; /* at least one algorithm should be set */
359 wpa_printf(MSG_DEBUG, "%s: auth_alg=0x%x", __FUNCTION__, algs);
360 return ipw_set_wpa_param(drv, IPW_PARAM_AUTH_ALGS, algs);
driver_wext.c 2341 int algs = 0, res; local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator1Test.java 50 private static String[] algs = { field in class:AlgorithmParameterGenerator1Test
125 for (int i = 0; i < algs.length; i++) {
126 apg = AlgorithmParameterGenerator.getInstance(algs[i]);
127 assertEquals("Incorrect algorithm", apg.getAlgorithm(), algs[i]);
144 for (int i = 0; i < algs.length; i++) {
146 AlgorithmParameterGenerator.getInstance(algs[i], provider);
151 AlgorithmParameterGenerator.getInstance(algs[i], "");
170 for (int i = 0; i < algs.length; i++) {
173 AlgorithmParameterGenerator.getInstance(algs[i],
225 for (int i = 0; i < algs.length; i++)
    [all...]
KeyFactory2Test.java 363 Vector algs = new Vector(); local
372 algs.addElement(algorithm.substring(KEYFACTORY_ID.length()));
376 return (String[]) algs.toArray(new String[algs.size()]);
KeyPairGenerator1Test.java 54 public static String[] algs = { field in class:KeyPairGenerator1Test
128 for (int i = 0; i < algs.length; i++) {
129 kpg = KeyPairGenerator.getInstance(algs[i]);
131 algs[i].toUpperCase());
147 for (int i = 0; i < algs.length; i++) {
149 KeyPairGenerator.getInstance(algs[i], provider);
154 KeyPairGenerator.getInstance(algs[i], "");
174 for (int i = 0; i < algs.length; i++) {
177 KeyPairGenerator.getInstance(algs[i], invalidValues[j]);
179 .concat(algs[i]).concat(" provider: ").concat
    [all...]
MessageDigest2Test.java 440 Vector algs = new Vector(); local
449 algs.addElement(algorithm.substring(MESSAGEDIGEST_ID.length()));
453 return (String[]) algs.toArray(new String[algs.size()]);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator1Test.java 49 private static String[] algs = { field in class:AlgorithmParameterGenerator1Test
124 for (int i = 0; i < algs.length; i++) {
125 apg = AlgorithmParameterGenerator.getInstance(algs[i]);
126 assertEquals("Incorrect algorithm", apg.getAlgorithm(), algs[i]);
143 for (int i = 0; i < algs.length; i++) {
145 AlgorithmParameterGenerator.getInstance(algs[i], provider);
150 AlgorithmParameterGenerator.getInstance(algs[i], "");
169 for (int i = 0; i < algs.length; i++) {
172 AlgorithmParameterGenerator.getInstance(algs[i],
224 for (int i = 0; i < algs.length; i++)
    [all...]
KeyPairGenerator1Test.java 52 public static String[] algs = { field in class:KeyPairGenerator1Test
126 for (int i = 0; i < algs.length; i++) {
127 kpg = KeyPairGenerator.getInstance(algs[i]);
129 algs[i].toUpperCase());
145 for (int i = 0; i < algs.length; i++) {
147 KeyPairGenerator.getInstance(algs[i], provider);
152 KeyPairGenerator.getInstance(algs[i], "");
171 for (int i = 0; i < algs.length; i++) {
174 KeyPairGenerator.getInstance(algs[i], invalidValues[j]);
176 .concat(algs[i]).concat(" provider: ").concat
    [all...]
SecurityTest.java 146 Set<String> algs = Security.getAlgorithms(servicesNames[i]); local
147 assertTrue("no services with specified name: " + servicesNames[i], algs.size() > 0);
151 Set<String> algs = Security.getAlgorithms(invalidServiceNames[i]); local
152 assertTrue("services with specified name: " + invalidServiceNames[i], algs.size() == 0);
KeyFactory2Test.java 392 Vector<String> algs = new Vector<String>(); local
401 algs.addElement(algorithm.substring(KEYFACTORY_ID.length()));
405 return algs.toArray(new String[algs.size()]);
MessageDigest2Test.java 443 List<String> algs = new ArrayList<String>(); local
447 algs.add(algorithm.substring(MESSAGEDIGEST_ID.length()));
451 if (algs.size() == 0) {
454 return algs;
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_schannel.c 714 ALG_ID algs[1]; local
732 algs[0] = CALG_RSA_KEYX;
734 conn->schannel_cred.palgSupportedAlgs = algs;
  /external/wpa_supplicant_8/src/crypto/
tls_schannel.c 694 ALG_ID algs[1]; local
712 algs[0] = CALG_RSA_KEYX;
714 conn->schannel_cred.palgSupportedAlgs = algs;
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.c 931 int algs = AUTH_ALG_OPEN_SYSTEM; local
992 algs = AUTH_ALG_LEAP;
994 algs |= AUTH_ALG_LEAP;
998 wpa_printf(MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs);
1000 algs = 0;
1002 algs |= AUTH_ALG_OPEN_SYSTEM;
1004 algs |= AUTH_ALG_SHARED_KEY;
1006 algs |= AUTH_ALG_LEAP;
1008 algs);
1010 wpa_drv_set_auth_alg(wpa_s, algs);
    [all...]
mlme.c 841 u8 algs[num_algs]; local
843 algs[0] = algs[1] = algs[2] = 0xff;
845 algs[0] = WLAN_AUTH_OPEN;
848 algs[1] = WLAN_AUTH_SHARED_KEY;
850 algs[2] = WLAN_AUTH_LEAP;
861 if (algs[pos] == wpa_s->mlme.auth_alg ||
862 algs[pos] == 0xff)
864 if (algs[pos] == WLAN_AUTH_SHARED_KEY &
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_hostap.c 1515 int algs = 0; local
    [all...]
driver_wext.c 2171 int algs = 0, res; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.c 1066 int algs = WPA_AUTH_ALG_OPEN; local
    [all...]

Completed in 505 milliseconds

1 2