Searched defs:nid (Results 1 - 25 of 78) sorted by last modified time

1234

/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface_dbus.c511 int nid = strtoul(network, NULL, 10); local
514 nid);
H A Dctrl_iface_dbus_handlers.c1125 int nid; local
1150 nid = strtoul(network, NULL, 10);
1156 ssid = wpa_config_get_network(wpa_s->conf, nid);
1171 ssid->disabled = (nid != ssid->id);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pwd_common.c96 int nid, is_odd, ret = 0; local
101 nid = NID_X9_62_prime256v1;
104 nid = NID_secp384r1;
107 nid = NID_secp521r1;
110 nid = NID_X9_62_prime192v1;
113 nid = NID_secp224r1;
124 if ((grp->group = EC_GROUP_new_by_curve_name(nid)) == NULL) {
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pwd_common.c96 int nid, is_odd, ret = 0; local
101 nid = NID_X9_62_prime256v1;
104 nid = NID_secp384r1;
107 nid = NID_secp521r1;
110 nid = NID_X9_62_prime192v1;
113 nid = NID_secp224r1;
124 if ((grp->group = EC_GROUP_new_by_curve_name(nid)) == NULL) {
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c2156 * @nid: network id
2161 int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid) argument
2169 ssid = wpa_config_get_network(wpa_s->conf, nid);
2173 return wpas_dbus_unregister_persistent_group(wpa_s, nid);
2185 wpa_s->dbus_new_path, nid);
2192 wpas_dbus_signal_network_removed(wpa_s, nid);
3663 * @nid: network id
3674 int nid)
3690 wpa_s->dbus_new_path, nid);
3697 wpas_dbus_signal_persistent_group_removed(wpa_s, nid);
3673 wpas_dbus_unregister_persistent_group(struct wpa_supplicant *wpa_s, int nid) argument
[all...]
H A Ddbus_new.h154 int wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid);
195 int nid);
298 int nid)
394 struct wpa_supplicant *wpa_s, int nid)
297 wpas_dbus_unregister_network(struct wpa_supplicant *wpa_s, int nid) argument
393 wpas_dbus_unregister_persistent_group( struct wpa_supplicant *wpa_s, int nid) argument
H A Ddbus_old.c237 int nid = strtoul(network, NULL, 10); local
240 nid);
H A Ddbus_old_handlers.c1077 int nid; local
1101 nid = strtoul(network, NULL, 10);
1107 ssid = wpa_config_get_network(wpa_s->conf, nid);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pwd_common.c96 int nid, is_odd, ret = 0; local
101 nid = NID_X9_62_prime256v1;
104 nid = NID_secp384r1;
107 nid = NID_secp521r1;
110 nid = NID_X9_62_prime192v1;
113 nid = NID_secp224r1;
124 if ((grp->group = EC_GROUP_new_by_curve_name(nid)) == NULL) {
/external/tcpdump/
H A Dprint-wb.c155 u_int16_t nid; member in struct:pgstate
189 int nid; local
204 nid = EXTRACT_16BITS(&id->pi_ps.nid);
205 len -= sizeof(*io) * nid;
207 cp = (char *)(io + nid);
215 for (i = 0; i < nid && (u_char *)(io + 1) <= snapend; ++io, ++i) {
220 if (i >= nid) {
279 for (ie = io + ps->nid; io < ie && (u_char *)(io + 1) <= ep; ++io) {
/external/openssl/crypto/ec/
H A Dec.h264 * \param nid NID of the curve name OID
266 void EC_GROUP_set_curve_name(EC_GROUP *group, int nid);
377 * \param nid NID of the OID of the curve name
381 EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
389 int nid; member in struct:__anon10331
731 * \param nid NID of the named curve.
734 EC_KEY *EC_KEY_new_by_curve_name(int nid);
954 #define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \
956 EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL)
H A Dec_ameth.c71 int nid; local
78 && (nid = EC_GROUP_get_curve_name(group)))
81 *ppval = OBJ_nid2obj(nid);
H A Dec_asn1.c300 int ok=0, nid; local
312 nid = EC_METHOD_get_field_type(EC_GROUP_method_of(group));
314 if ((field->fieldType = OBJ_nid2obj(nid)) == NULL)
320 if (nid == NID_X9_62_prime_field)
341 else /* nid == NID_X9_62_characteristic_two_field */
438 int ok=0, nid; local
454 nid = EC_METHOD_get_field_type(EC_GROUP_method_of(group));
457 if (nid == NID_X9_62_prime_field)
466 else /* nid == NID_X9_62_characteristic_two_field */
727 /* we don't kmow the nid
[all...]
H A Dec_curve.c1826 int nid; member in struct:_ec_list_element_st
2058 EC_GROUP *EC_GROUP_new_by_curve_name(int nid) argument
2063 if (nid <= 0)
2067 if (curve_list[i].nid == nid)
2079 EC_GROUP_set_curve_name(ret, nid);
2095 r[i].nid = curve_list[i].nid;
H A Dec_key.c94 EC_KEY *EC_KEY_new_by_curve_name(int nid) argument
99 ret->group = EC_GROUP_new_by_curve_name(nid);
H A Dec_lib.c337 void EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
339 group->curve_name = nid;
H A Dec_pmeth.c254 int nid; local
255 nid = OBJ_sn2nid(value);
256 if (nid == NID_undef)
257 nid = OBJ_ln2nid(value);
258 if (nid == NID_undef)
263 return EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid);
H A Deck_prn.c179 int nid; local
184 nid = EC_GROUP_get_curve_name(x);
185 if (nid == 0)
188 if (BIO_printf(bp, "ASN1 OID: %s", OBJ_nid2sn(nid)) <= 0)
H A Dectest.c1241 int nid = curves[n].nid; local
1242 if ((group = EC_GROUP_new_by_curve_name(nid)) == NULL)
1246 " curve %s\n", OBJ_nid2sn(nid));
1254 " curve %s\n", OBJ_nid2sn(nid));
/external/openssl/crypto/ecdh/
H A Decdhtest.c123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) argument
134 a = EC_KEY_new_by_curve_name(nid);
135 b = EC_KEY_new_by_curve_name(nid);
/external/openssl/crypto/ecdsa/
H A Decdsatest.c102 int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
181 int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in) argument
198 BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
200 if ((key = EC_KEY_new_by_curve_name(nid)) == NULL)
297 int nid, ret = 0; local
334 nid = curves[n].nid;
335 if (nid == NID_ipsec4)
340 group = EC_GROUP_new_by_curve_name(nid);
354 BIO_printf(out, "%s: ", OBJ_nid2sn(nid));
[all...]
/external/openssl/crypto/engine/
H A Deng_cryptodev.c102 const int **nids, int nid);
104 const int **nids, int nid);
140 int nid; member in struct:__anon10397
159 int nid; member in struct:__anon10398
255 if (ciphers[i].nid == NID_undef)
262 nids[count++] = ciphers[i].nid;
294 if (digests[i].nid == NID_undef)
301 nids[count++] = digests[i].nid;
426 if (ctx->cipher->nid == ciphers[i].nid
609 cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid) argument
652 digest_nid_to_cryptodev(int nid) argument
664 digest_key_length(int nid) argument
898 cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, const int **nids, int nid) argument
[all...]
H A Deng_openssl.c114 const int **nids, int nid);
118 const int **nids, int nid);
278 const int **nids, int nid)
287 if(nid == NID_rc4)
289 else if(nid == NID_rc4_40)
295 "nid %d\n", nid);
346 const int **nids, int nid)
355 if(nid == NID_sha1)
361 "nid
277 openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid) argument
345 openssl_digests(ENGINE *e, const EVP_MD **digest, const int **nids, int nid) argument
[all...]
H A Deng_table.c63 /* The 'nid' of this algorithm/mode */
64 int nid; member in struct:st_engine_pile
106 return c->nid;
111 return a->nid - b->nid;
145 tmplate.nid = *nids;
152 fnd->nid = *nids;
238 /* return a functional reference for a given 'nid' */
240 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid) argument
242 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, cons
[all...]
H A Dtb_asnmth.c62 * 'nid'. */
115 * references) for a given pkey_asn1_meth 'nid' */
116 ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid) argument
118 return engine_table_select(&pkey_asn1_meth_table, nid);
122 const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid) argument
126 if(!fn || !fn(e, &ret, NULL, nid))
206 static void look_str_cb(int nid, STACK_OF(ENGINE) *sk, ENGINE *def, void *arg) argument
216 e->pkey_asn1_meths(e, &ameth, NULL, nid);

Completed in 258 milliseconds

1234