eappeap.h
来自「Linux dot1x认证的实现」· C头文件 代码 · 共 33 行
H
33 行
/******************************************************************* * EAP PEAP Function header * * Licensed under a dual GPL/BSD license. (See LICENSE file for more info.) * * File: eappeap.h * * Authors: Chris.Hessing@utah.edu * *******************************************************************/#ifndef _EAPPEAP_H_#define _EAPPEAP_H_#include <netinet/in.h>#define PEAP_VERSION0 0#define PEAP_VERSION1 1#define PEAP_SESSION_KEY_CONST "client EAP encryption"#define PEAP_SESSION_KEY_CONST_SIZE 21#define PEAPv1_SESSION_KEY_CONST "client PEAP encryption"#define PEAPv1_SESSION_KEY_CONST_SIZE 22int eappeap_setup(struct generic_eap_data *);int eappeap_process(struct generic_eap_data *, uint8_t *, int, uint8_t *, int *);int eappeap_get_keys(struct interface_data *);int eappeap_cleanup(struct generic_eap_data *);int eappeap_failed(struct generic_eap_data *);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?