Select one of the symbols to view example projects that use it.
 
Outline
#define MSCHAPV2_H
#define MSCHAPV2_CHAL_LEN
#define MSCHAPV2_NT_RESPONSE_LEN
#define MSCHAPV2_AUTH_RESPONSE_LEN
#define MSCHAPV2_MASTER_KEY_LEN
mschapv2_remove_domain(const u8 *, size_t *);
mschapv2_derive_response(const u8 *, size_t, const u8 *, size_t, int, const u8 *, const u8 *, u8 *, u8 *, u8 *);
mschapv2_verify_auth_response(const u8 *, const u8 *, size_t);
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/eap_peer/mschapv2.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * MSCHAPV2 *//* ... */ #ifndef MSCHAPV2_H #define MSCHAPV2_H #define MSCHAPV2_CHAL_LEN 16 #define MSCHAPV2_NT_RESPONSE_LEN 24 #define MSCHAPV2_AUTH_RESPONSE_LEN 20 #define MSCHAPV2_MASTER_KEY_LEN 165 defines const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); int mschapv2_derive_response(const u8 *username, size_t username_len, const u8 *password, size_t password_len, int pwhash, const u8 *auth_challenge, const u8 *peer_challenge, u8 *nt_response, u8 *auth_response, u8 *master_key); int mschapv2_verify_auth_response(const u8 *auth_response, const u8 *buf, size_t buf_len);/* ... */ #endif /* MSCHAPV2_H */
Details