00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef MSCHAPV2_H
00016 #define MSCHAPV2_H
00017
00018 #define MSCHAPV2_CHAL_LEN 16
00019 #define MSCHAPV2_NT_RESPONSE_LEN 24
00020 #define MSCHAPV2_AUTH_RESPONSE_LEN 20
00021 #define MSCHAPV2_MASTER_KEY_LEN 16
00022
00023 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
00024 int mschapv2_derive_response(const u8 *username, size_t username_len,
00025 const u8 *password, size_t password_len,
00026 int pwhash,
00027 const u8 *auth_challenge,
00028 const u8 *peer_challenge,
00029 u8 *nt_response, u8 *auth_response,
00030 u8 *master_key);
00031 int mschapv2_verify_auth_response(const u8 *auth_response,
00032 const u8 *buf, size_t buf_len);
00033
00034 #endif