houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 单个WLAN配置EAP
8  * @date 2023/03/16 11:15:26
9  */
10 public class CFG_WLAN_EAP extends NetSDKLib.SdkStructure {
11     /**
12      * EAP方法 {@link com.netsdk.lib.enumeration.EM_CFG_EAP_METHOD}
13      */
14     public int emMethod;
15     /**
16      * EAP身份验证方法 {@link com.netsdk.lib.enumeration.EM_CFG_EAP_AUTH_TYPE}
17      */
18     public int emAuthType;
19     /**
20      * 身份
21      */
22     public byte[] szIdentity = new byte[64];
23     /**
24      * 匿名身份
25      */
26     public byte[] szAnonymousID = new byte[64];
27     /**
28      * 密码
29      */
30     public byte[] szPassword = new byte[64];
31     /**
32      * CA证书
33      */
34     public byte[] szCaCert = new byte[512];
35     /**
36      * 用户证书
37      */
38     public byte[] szUserCert = new byte[512];
39
40     public CFG_WLAN_EAP() {
41     }
42 }