eap_config.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. /*
  2. * EAP peer configuration data
  3. * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef EAP_CONFIG_H
  15. #define EAP_CONFIG_H
  16. /**
  17. * struct eap_peer_config - EAP peer configuration/credentials
  18. */
  19. struct eap_peer_config {
  20. /**
  21. * identity - EAP Identity
  22. *
  23. * This field is used to set the real user identity or NAI (for
  24. * EAP-PSK/PAX/SAKE/GPSK).
  25. */
  26. u8 *identity;
  27. /**
  28. * identity_len - EAP Identity length
  29. */
  30. size_t identity_len;
  31. /**
  32. * anonymous_identity - Anonymous EAP Identity
  33. *
  34. * This field is used for unencrypted use with EAP types that support
  35. * different tunnelled identity, e.g., EAP-TTLS, in order to reveal the
  36. * real identity (identity field) only to the authentication server.
  37. *
  38. * If not set, the identity field will be used for both unencrypted and
  39. * protected fields.
  40. */
  41. u8 *anonymous_identity;
  42. /**
  43. * anonymous_identity_len - Length of anonymous_identity
  44. */
  45. size_t anonymous_identity_len;
  46. /**
  47. * password - Password string for EAP
  48. *
  49. * This field can include either the plaintext password (default
  50. * option) or a NtPasswordHash (16-byte MD4 hash of the unicode
  51. * presentation of the password) if flags field has
  52. * EAP_CONFIG_FLAGS_PASSWORD_NTHASH bit set to 1. NtPasswordHash can
  53. * only be used with authentication mechanism that use this hash as the
  54. * starting point for operation: MSCHAP and MSCHAPv2 (EAP-MSCHAPv2,
  55. * EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
  56. *
  57. * In addition, this field is used to configure a pre-shared key for
  58. * EAP-PSK/PAX/SAKE/GPSK. The length of the PSK must be 16 for EAP-PSK
  59. * and EAP-PAX and 32 for EAP-SAKE. EAP-GPSK can use a variable length
  60. * PSK.
  61. */
  62. u8 *password;
  63. /**
  64. * password_len - Length of password field
  65. */
  66. size_t password_len;
  67. /**
  68. * ca_cert - File path to CA certificate file (PEM/DER)
  69. *
  70. * This file can have one or more trusted CA certificates. If ca_cert
  71. * and ca_path are not included, server certificate will not be
  72. * verified. This is insecure and a trusted CA certificate should
  73. * always be configured when using EAP-TLS/TTLS/PEAP. Full path to the
  74. * file should be used since working directory may change when
  75. * wpa_supplicant is run in the background.
  76. *
  77. * Alternatively, a named configuration blob can be used by setting
  78. * this to blob://blob_name.
  79. *
  80. * Alternatively, this can be used to only perform matching of the
  81. * server certificate (SHA-256 hash of the DER encoded X.509
  82. * certificate). In this case, the possible CA certificates in the
  83. * server certificate chain are ignored and only the server certificate
  84. * is verified. This is configured with the following format:
  85. * hash:://server/sha256/cert_hash_in_hex
  86. * For example: "hash://server/sha256/
  87. * 5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6a"
  88. *
  89. * On Windows, trusted CA certificates can be loaded from the system
  90. * certificate store by setting this to cert_store://name, e.g.,
  91. * ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
  92. * Note that when running wpa_supplicant as an application, the user
  93. * certificate store (My user account) is used, whereas computer store
  94. * (Computer account) is used when running wpasvc as a service.
  95. */
  96. u8 *ca_cert;
  97. /**
  98. * ca_path - Directory path for CA certificate files (PEM)
  99. *
  100. * This path may contain multiple CA certificates in OpenSSL format.
  101. * Common use for this is to point to system trusted CA list which is
  102. * often installed into directory like /etc/ssl/certs. If configured,
  103. * these certificates are added to the list of trusted CAs. ca_cert
  104. * may also be included in that case, but it is not required.
  105. */
  106. u8 *ca_path;
  107. /**
  108. * client_cert - File path to client certificate file (PEM/DER)
  109. *
  110. * This field is used with EAP method that use TLS authentication.
  111. * Usually, this is only configured for EAP-TLS, even though this could
  112. * in theory be used with EAP-TTLS and EAP-PEAP, too. Full path to the
  113. * file should be used since working directory may change when
  114. * wpa_supplicant is run in the background.
  115. *
  116. * Alternatively, a named configuration blob can be used by setting
  117. * this to blob://blob_name.
  118. */
  119. u8 *client_cert;
  120. /**
  121. * private_key - File path to client private key file (PEM/DER/PFX)
  122. *
  123. * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
  124. * commented out. Both the private key and certificate will be read
  125. * from the PKCS#12 file in this case. Full path to the file should be
  126. * used since working directory may change when wpa_supplicant is run
  127. * in the background.
  128. *
  129. * Windows certificate store can be used by leaving client_cert out and
  130. * configuring private_key in one of the following formats:
  131. *
  132. * cert://substring_to_match
  133. *
  134. * hash://certificate_thumbprint_in_hex
  135. *
  136. * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
  137. *
  138. * Note that when running wpa_supplicant as an application, the user
  139. * certificate store (My user account) is used, whereas computer store
  140. * (Computer account) is used when running wpasvc as a service.
  141. *
  142. * Alternatively, a named configuration blob can be used by setting
  143. * this to blob://blob_name.
  144. */
  145. u8 *private_key;
  146. /**
  147. * private_key_passwd - Password for private key file
  148. *
  149. * If left out, this will be asked through control interface.
  150. */
  151. u8 *private_key_passwd;
  152. /**
  153. * dh_file - File path to DH/DSA parameters file (in PEM format)
  154. *
  155. * This is an optional configuration file for setting parameters for an
  156. * ephemeral DH key exchange. In most cases, the default RSA
  157. * authentication does not use this configuration. However, it is
  158. * possible setup RSA to use ephemeral DH key exchange. In addition,
  159. * ciphers with DSA keys always use ephemeral DH keys. This can be used
  160. * to achieve forward secrecy. If the file is in DSA parameters format,
  161. * it will be automatically converted into DH params. Full path to the
  162. * file should be used since working directory may change when
  163. * wpa_supplicant is run in the background.
  164. *
  165. * Alternatively, a named configuration blob can be used by setting
  166. * this to blob://blob_name.
  167. */
  168. u8 *dh_file;
  169. /**
  170. * subject_match - Constraint for server certificate subject
  171. *
  172. * This substring is matched against the subject of the authentication
  173. * server certificate. If this string is set, the server sertificate is
  174. * only accepted if it contains this string in the subject. The subject
  175. * string is in following format:
  176. *
  177. * /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@n.example.com
  178. */
  179. u8 *subject_match;
  180. /**
  181. * altsubject_match - Constraint for server certificate alt. subject
  182. *
  183. * Semicolon separated string of entries to be matched against the
  184. * alternative subject name of the authentication server certificate.
  185. * If this string is set, the server sertificate is only accepted if it
  186. * contains one of the entries in an alternative subject name
  187. * extension.
  188. *
  189. * altSubjectName string is in following format: TYPE:VALUE
  190. *
  191. * Example: EMAIL:server@example.com
  192. * Example: DNS:server.example.com;DNS:server2.example.com
  193. *
  194. * Following types are supported: EMAIL, DNS, URI
  195. */
  196. u8 *altsubject_match;
  197. /**
  198. * ca_cert2 - File path to CA certificate file (PEM/DER) (Phase 2)
  199. *
  200. * This file can have one or more trusted CA certificates. If ca_cert2
  201. * and ca_path2 are not included, server certificate will not be
  202. * verified. This is insecure and a trusted CA certificate should
  203. * always be configured. Full path to the file should be used since
  204. * working directory may change when wpa_supplicant is run in the
  205. * background.
  206. *
  207. * This field is like ca_cert, but used for phase 2 (inside
  208. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  209. *
  210. * Alternatively, a named configuration blob can be used by setting
  211. * this to blob://blob_name.
  212. */
  213. u8 *ca_cert2;
  214. /**
  215. * ca_path2 - Directory path for CA certificate files (PEM) (Phase 2)
  216. *
  217. * This path may contain multiple CA certificates in OpenSSL format.
  218. * Common use for this is to point to system trusted CA list which is
  219. * often installed into directory like /etc/ssl/certs. If configured,
  220. * these certificates are added to the list of trusted CAs. ca_cert
  221. * may also be included in that case, but it is not required.
  222. *
  223. * This field is like ca_path, but used for phase 2 (inside
  224. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  225. */
  226. u8 *ca_path2;
  227. /**
  228. * client_cert2 - File path to client certificate file
  229. *
  230. * This field is like client_cert, but used for phase 2 (inside
  231. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  232. * file should be used since working directory may change when
  233. * wpa_supplicant is run in the background.
  234. *
  235. * Alternatively, a named configuration blob can be used by setting
  236. * this to blob://blob_name.
  237. */
  238. u8 *client_cert2;
  239. /**
  240. * private_key2 - File path to client private key file
  241. *
  242. * This field is like private_key, but used for phase 2 (inside
  243. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  244. * file should be used since working directory may change when
  245. * wpa_supplicant is run in the background.
  246. *
  247. * Alternatively, a named configuration blob can be used by setting
  248. * this to blob://blob_name.
  249. */
  250. u8 *private_key2;
  251. /**
  252. * private_key2_passwd - Password for private key file
  253. *
  254. * This field is like private_key_passwd, but used for phase 2 (inside
  255. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  256. */
  257. u8 *private_key2_passwd;
  258. /**
  259. * dh_file2 - File path to DH/DSA parameters file (in PEM format)
  260. *
  261. * This field is like dh_file, but used for phase 2 (inside
  262. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  263. * file should be used since working directory may change when
  264. * wpa_supplicant is run in the background.
  265. *
  266. * Alternatively, a named configuration blob can be used by setting
  267. * this to blob://blob_name.
  268. */
  269. u8 *dh_file2;
  270. /**
  271. * subject_match2 - Constraint for server certificate subject
  272. *
  273. * This field is like subject_match, but used for phase 2 (inside
  274. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  275. */
  276. u8 *subject_match2;
  277. /**
  278. * altsubject_match2 - Constraint for server certificate alt. subject
  279. *
  280. * This field is like altsubject_match, but used for phase 2 (inside
  281. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  282. */
  283. u8 *altsubject_match2;
  284. /**
  285. * eap_methods - Allowed EAP methods
  286. *
  287. * (vendor=EAP_VENDOR_IETF,method=EAP_TYPE_NONE) terminated list of
  288. * allowed EAP methods or %NULL if all methods are accepted.
  289. */
  290. struct eap_method_type *eap_methods;
  291. /**
  292. * phase1 - Phase 1 (outer authentication) parameters
  293. *
  294. * String with field-value pairs, e.g., "peapver=0" or
  295. * "peapver=1 peaplabel=1".
  296. *
  297. * 'peapver' can be used to force which PEAP version (0 or 1) is used.
  298. *
  299. * 'peaplabel=1' can be used to force new label, "client PEAP
  300. * encryption", to be used during key derivation when PEAPv1 or newer.
  301. *
  302. * Most existing PEAPv1 implementation seem to be using the old label,
  303. * "client EAP encryption", and wpa_supplicant is now using that as the
  304. * default value.
  305. *
  306. * Some servers, e.g., Radiator, may require peaplabel=1 configuration
  307. * to interoperate with PEAPv1; see eap_testing.txt for more details.
  308. *
  309. * 'peap_outer_success=0' can be used to terminate PEAP authentication
  310. * on tunneled EAP-Success. This is required with some RADIUS servers
  311. * that implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
  312. * Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode).
  313. *
  314. * include_tls_length=1 can be used to force wpa_supplicant to include
  315. * TLS Message Length field in all TLS messages even if they are not
  316. * fragmented.
  317. *
  318. * sim_min_num_chal=3 can be used to configure EAP-SIM to require three
  319. * challenges (by default, it accepts 2 or 3).
  320. *
  321. * result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
  322. * protected result indication.
  323. *
  324. * fast_provisioning option can be used to enable in-line provisioning
  325. * of EAP-FAST credentials (PAC):
  326. * 0 = disabled,
  327. * 1 = allow unauthenticated provisioning,
  328. * 2 = allow authenticated provisioning,
  329. * 3 = allow both unauthenticated and authenticated provisioning
  330. *
  331. * fast_max_pac_list_len=num option can be used to set the maximum
  332. * number of PAC entries to store in a PAC list (default: 10).
  333. *
  334. * fast_pac_format=binary option can be used to select binary format
  335. * for storing PAC entries in order to save some space (the default
  336. * text format uses about 2.5 times the size of minimal binary format).
  337. *
  338. * crypto_binding option can be used to control PEAPv0 cryptobinding
  339. * behavior:
  340. * 0 = do not use cryptobinding (default)
  341. * 1 = use cryptobinding if server supports it
  342. * 2 = require cryptobinding
  343. *
  344. * EAP-WSC (WPS) uses following options: pin=Device_Password and
  345. * uuid=Device_UUID
  346. */
  347. char *phase1;
  348. /**
  349. * phase2 - Phase2 (inner authentication with TLS tunnel) parameters
  350. *
  351. * String with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
  352. * "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS.
  353. */
  354. char *phase2;
  355. /**
  356. * pcsc - Parameters for PC/SC smartcard interface for USIM and GSM SIM
  357. *
  358. * This field is used to configure PC/SC smartcard interface.
  359. * Currently, the only configuration is whether this field is %NULL (do
  360. * not use PC/SC) or non-NULL (e.g., "") to enable PC/SC.
  361. *
  362. * This field is used for EAP-SIM and EAP-AKA.
  363. */
  364. char *pcsc;
  365. /**
  366. * pin - PIN for USIM, GSM SIM, and smartcards
  367. *
  368. * This field is used to configure PIN for SIM and smartcards for
  369. * EAP-SIM and EAP-AKA. In addition, this is used with EAP-TLS if a
  370. * smartcard is used for private key operations.
  371. *
  372. * If left out, this will be asked through control interface.
  373. */
  374. char *pin;
  375. /**
  376. * engine - Enable OpenSSL engine (e.g., for smartcard access)
  377. *
  378. * This is used if private key operations for EAP-TLS are performed
  379. * using a smartcard.
  380. */
  381. int engine;
  382. /**
  383. * engine_id - Engine ID for OpenSSL engine
  384. *
  385. * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
  386. * engine.
  387. *
  388. * This is used if private key operations for EAP-TLS are performed
  389. * using a smartcard.
  390. */
  391. char *engine_id;
  392. /**
  393. * engine2 - Enable OpenSSL engine (e.g., for smartcard) (Phase 2)
  394. *
  395. * This is used if private key operations for EAP-TLS are performed
  396. * using a smartcard.
  397. *
  398. * This field is like engine, but used for phase 2 (inside
  399. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  400. */
  401. int engine2;
  402. /**
  403. * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
  404. *
  405. * This field is used to configure PIN for SIM and smartcards for
  406. * EAP-SIM and EAP-AKA. In addition, this is used with EAP-TLS if a
  407. * smartcard is used for private key operations.
  408. *
  409. * This field is like pin2, but used for phase 2 (inside
  410. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  411. *
  412. * If left out, this will be asked through control interface.
  413. */
  414. char *pin2;
  415. /**
  416. * engine2_id - Engine ID for OpenSSL engine (Phase 2)
  417. *
  418. * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
  419. * engine.
  420. *
  421. * This is used if private key operations for EAP-TLS are performed
  422. * using a smartcard.
  423. *
  424. * This field is like engine_id, but used for phase 2 (inside
  425. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  426. */
  427. char *engine2_id;
  428. /**
  429. * key_id - Key ID for OpenSSL engine
  430. *
  431. * This is used if private key operations for EAP-TLS are performed
  432. * using a smartcard.
  433. */
  434. char *key_id;
  435. /**
  436. * cert_id - Cert ID for OpenSSL engine
  437. *
  438. * This is used if the certificate operations for EAP-TLS are performed
  439. * using a smartcard.
  440. */
  441. char *cert_id;
  442. /**
  443. * ca_cert_id - CA Cert ID for OpenSSL engine
  444. *
  445. * This is used if the CA certificate for EAP-TLS is on a smartcard.
  446. */
  447. char *ca_cert_id;
  448. /**
  449. * key2_id - Key ID for OpenSSL engine (phase2)
  450. *
  451. * This is used if private key operations for EAP-TLS are performed
  452. * using a smartcard.
  453. */
  454. char *key2_id;
  455. /**
  456. * cert2_id - Cert ID for OpenSSL engine (phase2)
  457. *
  458. * This is used if the certificate operations for EAP-TLS are performed
  459. * using a smartcard.
  460. */
  461. char *cert2_id;
  462. /**
  463. * ca_cert2_id - CA Cert ID for OpenSSL engine (phase2)
  464. *
  465. * This is used if the CA certificate for EAP-TLS is on a smartcard.
  466. */
  467. char *ca_cert2_id;
  468. /**
  469. * otp - One-time-password
  470. *
  471. * This field should not be set in configuration step. It is only used
  472. * internally when OTP is entered through the control interface.
  473. */
  474. u8 *otp;
  475. /**
  476. * otp_len - Length of the otp field
  477. */
  478. size_t otp_len;
  479. /**
  480. * pending_req_identity - Whether there is a pending identity request
  481. *
  482. * This field should not be set in configuration step. It is only used
  483. * internally when control interface is used to request needed
  484. * information.
  485. */
  486. int pending_req_identity;
  487. /**
  488. * pending_req_password - Whether there is a pending password request
  489. *
  490. * This field should not be set in configuration step. It is only used
  491. * internally when control interface is used to request needed
  492. * information.
  493. */
  494. int pending_req_password;
  495. /**
  496. * pending_req_pin - Whether there is a pending PIN request
  497. *
  498. * This field should not be set in configuration step. It is only used
  499. * internally when control interface is used to request needed
  500. * information.
  501. */
  502. int pending_req_pin;
  503. /**
  504. * pending_req_new_password - Pending password update request
  505. *
  506. * This field should not be set in configuration step. It is only used
  507. * internally when control interface is used to request needed
  508. * information.
  509. */
  510. int pending_req_new_password;
  511. /**
  512. * pending_req_passphrase - Pending passphrase request
  513. *
  514. * This field should not be set in configuration step. It is only used
  515. * internally when control interface is used to request needed
  516. * information.
  517. */
  518. int pending_req_passphrase;
  519. /**
  520. * pending_req_otp - Whether there is a pending OTP request
  521. *
  522. * This field should not be set in configuration step. It is only used
  523. * internally when control interface is used to request needed
  524. * information.
  525. */
  526. char *pending_req_otp;
  527. /**
  528. * pending_req_otp_len - Length of the pending OTP request
  529. */
  530. size_t pending_req_otp_len;
  531. /**
  532. * pac_file - File path or blob name for the PAC entries (EAP-FAST)
  533. *
  534. * wpa_supplicant will need to be able to create this file and write
  535. * updates to it when PAC is being provisioned or refreshed. Full path
  536. * to the file should be used since working directory may change when
  537. * wpa_supplicant is run in the background.
  538. * Alternatively, a named configuration blob can be used by setting
  539. * this to blob://blob_name.
  540. */
  541. char *pac_file;
  542. /**
  543. * mschapv2_retry - MSCHAPv2 retry in progress
  544. *
  545. * This field is used internally by EAP-MSCHAPv2 and should not be set
  546. * as part of configuration.
  547. */
  548. int mschapv2_retry;
  549. /**
  550. * new_password - New password for password update
  551. *
  552. * This field is used during MSCHAPv2 password update. This is normally
  553. * requested from the user through the control interface and not set
  554. * from configuration.
  555. */
  556. u8 *new_password;
  557. /**
  558. * new_password_len - Length of new_password field
  559. */
  560. size_t new_password_len;
  561. /**
  562. * fragment_size - Maximum EAP fragment size in bytes (default 1398)
  563. *
  564. * This value limits the fragment size for EAP methods that support
  565. * fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
  566. * small enough to make the EAP messages fit in MTU of the network
  567. * interface used for EAPOL. The default value is suitable for most
  568. * cases.
  569. */
  570. int fragment_size;
  571. #define EAP_CONFIG_FLAGS_PASSWORD_NTHASH BIT(0)
  572. /**
  573. * flags - Network configuration flags (bitfield)
  574. *
  575. * This variable is used for internal flags to describe further details
  576. * for the network parameters.
  577. * bit 0 = password is represented as a 16-byte NtPasswordHash value
  578. * instead of plaintext password
  579. */
  580. u32 flags;
  581. };
  582. /**
  583. * struct wpa_config_blob - Named configuration blob
  584. *
  585. * This data structure is used to provide storage for binary objects to store
  586. * abstract information like certificates and private keys inlined with the
  587. * configuration data.
  588. */
  589. struct wpa_config_blob {
  590. /**
  591. * name - Blob name
  592. */
  593. char *name;
  594. /**
  595. * data - Pointer to binary data
  596. */
  597. u8 *data;
  598. /**
  599. * len - Length of binary data
  600. */
  601. size_t len;
  602. /**
  603. * next - Pointer to next blob in the configuration
  604. */
  605. struct wpa_config_blob *next;
  606. };
  607. #endif /* EAP_CONFIG_H */