houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
7412dd 5 import static com.iailab.netsdk.lib.NetSDKLib.MAX_PATH;
149dd0 6
H 7 /**
8  * @author 47081
9  * @version 1.0
10  * @description openssl库信息配置
11  * @date 2021/3/2
12  */
13 public class NET_CONFIG_OPENSSL_INFO extends NetSDKLib.SdkStructure {
14   public byte[] szSsleay = new byte[MAX_PATH]; // openssl协议库
15   // windows下 为ssleay32.dll库全路径,当路径为空时默认从当前NetSDK.dll路径下查找加载
16   // linux下    为libssl.so      库全路径,当路径为空时默认从系统路径下查找加载
17   public byte[] szLibeay = new byte[MAX_PATH]; // openssl加密库
18   // windows下 为libeay32.dll库全路径,当路径为空时默认从当前NetSDK.dll路径下查找加载
19   // linux下    为libcrypto.so库全路径,当路径为空时默认从系统路径下查找加载
20   /** 保留字节 */
21   public byte[] bReserved = new byte[504];
22 }