Select one of the symbols to view example projects that use it.
 
Outline
#define EAP_TLS_H
#include "eap_i.h"
#include "eap_common.h"
#include "eap.h"
#include "utils/wpabuf.h"
eap_tls_init(struct eap_sm *);
eap_tls_deinit(struct eap_sm *, void *);
eap_tls_process(struct eap_sm *, void *, struct eap_method_ret *, const struct wpabuf *);
eap_tls_getKey(struct eap_sm *, void *, size_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/eap_peer/eap_tls.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * EAP peer: EAP-TLS/PEAP/TTLS/FAST common functions * Copyright (c) 2004-2009, 2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef EAP_TLS_H #define EAP_TLS_H #include "eap_i.h" #include "eap_common.h" #include "eap.h" #include "utils/wpabuf.h" void * eap_tls_init(struct eap_sm *sm); void eap_tls_deinit(struct eap_sm *sm, void *priv); struct wpabuf * eap_tls_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData); u8 * eap_tls_getKey(struct eap_sm *sm, void *priv, size_t *len); /* ... */ #endif /* EAP_TLS_H */
Details