00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CHAP_H
00016 #define CHAP_H
00017
00018 #define CHAP_MD5_LEN 16
00019
00020 int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge,
00021 size_t challenge_len, u8 *response);
00022
00023 #endif