1
8
9
10
11
12
15
16
22
23
24
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
160
161
162
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
259
260
261
268
269
270
277
278
279
286
287
288
295
296
297
304
305
306
313
314
315
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
338
339
340
347
348
349
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
386
387
388
391
392
393
400
406
407
408
409
410
417
418
421
422
423
426
427
428
431
432
433
436
437
438
439
/* ... */
#ifndef EAP_CONFIG_H
#define EAP_CONFIG_H
/* ... */
struct eap_peer_config {
/* ... */
u8 *identity;
/* ... */
size_t identity_len;
/* ... */
u8 *anonymous_identity;
/* ... */
size_t anonymous_identity_len;
/* ... */
u8 *password;
/* ... */
size_t password_len;
/* ... */
u8 *ca_cert;
/* ... */
u8 *ca_path;
/* ... */
u8 *client_cert;
/* ... */
u8 *private_key;
/* ... */
const u8 *private_key_passwd;
/* ... */
u8 *ca_cert2;
/* ... */
u8 *ca_path2;
/* ... */
u8 *client_cert2;
/* ... */
u8 *private_key2;
u8 *private_key2_password;
/* ... */
struct eap_method_type *eap_methods;
char *phase1;
/* ... */
char *phase2;
/* ... */
char *pcsc;
/* ... */
char *pin;
/* ... */
int pending_req_identity;
/* ... */
int pending_req_password;
/* ... */
int pending_req_pin;
/* ... */
int pending_req_new_password;
/* ... */
int pending_req_passphrase;
/* ... */
int pending_req_sim;
/* ... */
char *pending_req_otp;
/* ... */
size_t pending_req_otp_len;
/* ... */
char *pac_file;
/* ... */
int mschapv2_retry;
/* ... */
u8 *new_password;
/* ... */
size_t new_password_len;
/* ... */
int fragment_size;
#define EAP_CONFIG_FLAGS_PASSWORD_NTHASH BIT(0)
#define EAP_CONFIG_FLAGS_EXT_PASSWORD BIT(1)
/* ... */
u32 flags;
/* ... */
int ocsp;
/* ... */
int erp;
/* ... */
enum {
NO_CHECK = 0,
PENDING_CHECK,
EXT_CERT_CHECK_GOOD,
EXT_CERT_CHECK_BAD,
}{ ... } pending_ext_cert_check;
}{ ... };
/* ... */
struct wpa_config_blob {
/* ... */
char *name;
/* ... */
const u8 *data;
/* ... */
size_t len;
/* ... */
struct wpa_config_blob *next;
}{ ... };
/* ... */
#endif