ttlsphase2.h
来自「linux 下通过802.1认证的安装包」· C头文件 代码 · 共 24 行
H
24 行
/**
* EAPTTLS Phase 2 Function implementations
*
* Licensed under a dual GPL/BSD license. (See LICENSE file for more info.)
*
* \file ttlsphase2.c
*
* \author chris@open1x.org
*
**/
#ifndef _TTLS_PHASE2_H
#define _TTLS_PHASE2_H
// Mirror the function that are called from the eap state machine, just to
// keep things clear. Note that the keying function calls are missing
// because we shouldn't need keying material out of these calls.
void ttls_phase2_check(eap_type_data *);
void ttls_phase2_process(eap_type_data *, uint8_t *, uint16_t);
void ttls_phase2_buildResp(eap_type_data *, uint8_t *, uint16_t *);
void ttls_phase2_deinit(eap_type_data *);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?