Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 9 of 9) sorted by relevance

/hostap-latest/tests/hwsim/
Dtest_wpas_ctrl.py1860 for cmd, exp, count, func in tests:
1863 if exp and exp not in res:
1870 for cmd, exp, count, func in tests:
1873 if exp and exp not in res:
1885 for cmd, exp, count, func in tests:
1888 if exp and exp not in res:
Dtest_p2p_persistent.py424 exp = r'<.>(P2P-INVITATION-RECEIVED) sa=([0-9a-f:]*) persistent=([0-9]*) freq=([0-9]*)'
425 s = re.split(exp, ev)
464 exp = r'<.>(P2P-INVITATION-RECEIVED) sa=([0-9a-f:]*) persistent=([0-9]*)'
465 s = re.split(exp, ev)
Dwpasupplicant.py688 exp = r'<.>(P2P-GO-NEG-FAILURE) status=([0-9]*)'
689 s = re.split(exp, ev)
700exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase…
701 s = re.split(exp, ev)
703exp = r'<.>(P2P-GROUP-STARTED) ([^ ]*) ([^ ]*) ssid="(.*)" freq=([0-9]*) ((?:psk=.*)|(?:passphrase…
704 s = re.split(exp, ev)
746 exp = r'<.>(P2P-GO-NEG-SUCCESS) role=(GO|client) freq=([0-9]*)'
747 s = re.split(exp, go_neg_res)
Dtest_ibss.py25 exp = r'<.>(CTRL-EVENT-CONNECTED) - Connection to ([0-9a-f:]*) completed.*'
26 s = re.split(exp, ev)
Dtest_gas.py62exp = r'<.>(GAS-RESPONSE-INFO) addr=([0-9a-f:]*) dialog_token=([0-9]*) status_code=([0-9]*) resp_l…
63 res = re.split(exp, info)
978exp = r'<.>(GAS-RESPONSE-INFO) addr=([0-9a-f:]*) dialog_token=([0-9]*) status_code=([0-9]*) resp_l…
979 res = re.split(exp, ev)
Dtest_ap_eap.py6238 for exp, flags in tests:
6242 …pd, "tls_disable_tlsv1_0=0 tls_disable_tlsv1_1=0 tls_disable_tlsv1_2=0 tls_disable_tlsv1_3=0", exp)
/hostap-latest/src/crypto/
Dcrypto_mbedtls_alt.c1396 mbedtls_mpi exp, tmp; in crypto_bignum_legendre() local
1397 mbedtls_mpi_init(&exp); in crypto_bignum_legendre()
1402 …if (mbedtls_mpi_sub_int(&exp, (const mbedtls_mpi *)p, 1) == 0 && mbedtls_mpi_shift_r(&exp, 1) == 0… in crypto_bignum_legendre()
1403 mbedtls_mpi_exp_mod(&tmp, (const mbedtls_mpi *)a, &exp, (const mbedtls_mpi *)p, NULL) == 0) in crypto_bignum_legendre()
1421 mbedtls_mpi_free(&exp); in crypto_bignum_legendre()
1881 mbedtls_mpi exp; in crypto_mbedtls_short_weierstrass_derive_y() local
1882 mbedtls_mpi_init(&exp); in crypto_mbedtls_short_weierstrass_derive_y()
1885 || mbedtls_mpi_add_int(&exp, &grp->P, 1) || mbedtls_mpi_shift_r(&exp, 2) || in crypto_mbedtls_short_weierstrass_derive_y()
1886 mbedtls_mpi_exp_mod(bn, cy2, &exp, &grp->P, NULL) || in crypto_mbedtls_short_weierstrass_derive_y()
1888 mbedtls_mpi_free(&exp); in crypto_mbedtls_short_weierstrass_derive_y()
Dcrypto_openssl.c2204 BIGNUM *exp = NULL, *tmp = NULL; in crypto_bignum_legendre() local
2215 exp = BN_new(); in crypto_bignum_legendre()
2217 if (!exp || !tmp || in crypto_bignum_legendre()
2219 !BN_sub(exp, (const BIGNUM *) p, BN_value_one()) || in crypto_bignum_legendre()
2220 !BN_rshift1(exp, exp) || in crypto_bignum_legendre()
2221 !BN_mod_exp_mont_consttime(tmp, (const BIGNUM *) a, exp, in crypto_bignum_legendre()
2235 BN_clear_free(exp); in crypto_bignum_legendre()
/hostap-latest/src/common/
Dsae.c201 u8 exp[1]; in sae_test_pwd_seed_ffc() local
244 exp[0] = 2; in sae_test_pwd_seed_ffc()
245 b = crypto_bignum_init_set(exp, sizeof(exp)); in sae_test_pwd_seed_ffc()
248 exp[0] = 1; in sae_test_pwd_seed_ffc()
249 b = crypto_bignum_init_set(exp, sizeof(exp)); in sae_test_pwd_seed_ffc()