资源简介
Win7 64位系统下通过VS2015编译好的所有八个版本的OpenSSL链接库,
包含以下八个版本:
1、32位、debug版LIB;
2、32位、release版LIB;
3、32位、debug版DLL;
4、32位、release版DLL;
5、64位、debug版LIB;
6、64位、release版LIB;
7、64位、debug版DLL;
8、64位、release版DLL;
具体编译方法请看我的博客:http://blog.csdn.net/YAOJINGKAO/article/details/53041165
代码片段和文件信息
#define APPlink_STDIN 1
#define APPlink_STDOUT 2
#define APPlink_STDERR 3
#define APPlink_FPRINTF 4
#define APPlink_FGETS 5
#define APPlink_FREAD 6
#define APPlink_FWRITE 7
#define APPlink_FSETMOD 8
#define APPlink_FEOF 9
#define APPlink_FCLOSE 10 /* should not be used */
#define APPlink_FOPEN 11 /* solely for completeness */
#define APPlink_FSEEK 12
#define APPlink_FTELL 13
#define APPlink_FFLUSH 14
#define APPlink_FERROR 15
#define APPlink_CLEARERR 16
#define APPlink_FILENO 17 /* to be used with below */
#define APPlink_OPEN 18 /* formally can‘t be used as flags can vary */
#define APPlink_READ 19
#define APPlink_WRITE 20
#define APPlink_LSEEK 21
#define APPlink_CLOSE 22
#define APPlink_MAX 22 /* always same as last macro */
#ifndef APPMACROS_ONLY
# include
# include
# include
static void *app_stdin(void)
{
return stdin;
}
static void *app_stdout(void)
{
return stdout;
}
static void *app_stderr(void)
{
return stderr;
}
static int app_feof(FILE *fp)
{
return feof(fp);
}
static int app_ferror(FILE *fp)
{
return ferror(fp);
}
static void app_clearerr(FILE *fp)
{
clearerr(fp);
}
static int app_fileno(FILE *fp)
{
return _fileno(fp);
}
static int app_fsetmod(FILE *fp char mod)
{
return _setmode(_fileno(fp) mod == ‘b‘ ? _O_BINARY : _O_TEXT);
}
#ifdef __cplusplus
extern “C“ {
#endif
__declspec(dllexport)
void **
# if defined(__BORLANDC__)
/*
* __stdcall appears to be the only way to get the name
* decoration right with Borland C. Otherwise it works
* purely incidentally as we pass no parameters.
*/
__stdcall
# else
__cdecl
# endif
OPENSSL_Applink(void)
{
static int once = 1;
static void *OPENSSL_ApplinkTable[APPlink_MAX + 1] =
{ (void *)APPlink_MAX };
if (once) {
OPENSSL_ApplinkTable[APPlink_STDIN] = app_stdin;
OPENSSL_ApplinkTable[APPlink_STDOUT] = app_stdout;
OPENSSL_ApplinkTable[APPlink_STDERR] = app_stderr;
OPENSSL_ApplinkTable[APPlink_FPRINTF] = fprintf;
OPENSSL_ApplinkTable[APPlink_FGETS] = fgets;
OPENSSL_ApplinkTable[APPlink_FREAD] = fread;
OPENSSL_ApplinkTable[APPlink_FWRITE] = fwrite;
OPENSSL_ApplinkTable[APPlink_FSETMOD] = app_fsetmod;
OPENSSL_ApplinkTable[APPlink_FEOF] = app_feof;
OPENSSL_ApplinkTable[APPlink_FCLOSE] = fclose;
OPENSSL_ApplinkTable[APPlink_FOPEN] = fopen;
OPENSSL_ApplinkTable[APPlink_FSEEK] = fseek;
OPENSSL_ApplinkTable[APPlink_FTELL] = ftell;
OPENSSL_ApplinkTable[APPlink_FFLUSH] = fflush;
OPENSSL_ApplinkTable[APPlink_FERROR] = app_ferror;
OPENSSL_ApplinkTable[APPlink_CLEARERR] = app_clearerr;
OPENSSL_ApplinkTable[APPlink_FILENO] = app_fileno;
OPENSSL_ApplinkTable[APPlink_OPEN] = _open;
OPENSSL_ApplinkTable[APPlink_READ] = _read;
OPENSSL_ApplinkTable[APPlink_WRITE] = _write;
OPENSSL_ApplinkTable[
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1931264 2016-11-04 21:13 build-vc14-release-win32-lib\bin\openssl.exe
文件 6146 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\aes.h
文件 3176 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\appli
文件 63142 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\asn1.h
文件 34475 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\asn1t.h
文件 24435 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\asn1_mac.h
文件 38742 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\bio.h
文件 5351 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\blowfish.h
文件 41334 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\bn.h
文件 5026 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\buffer.h
文件 5565 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\camellia.h
文件 4659 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\cast.h
文件 3257 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\cmac.h
文件 28641 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\cms.h
文件 2375 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\comp.h
文件 11256 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\conf.h
文件 4147 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\conf_api.h
文件 27667 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\crypto.h
文件 11913 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\des.h
文件 21486 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\des_old.h
文件 16180 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\dh.h
文件 13662 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\dsa.h
文件 20210 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\dso.h
文件 9046 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\dtls1.h
文件 616 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\ebcdic.h
文件 56134 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\ec.h
文件 5191 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\ecdh.h
文件 14038 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\ecdsa.h
文件 44946 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\engine.h
文件 16776 2016-11-04 21:13 build-vc14-release-win32-lib\include\openssl\err.h
............此处省略718个文件信息
相关资源
- Win7下通过VS2015编译好的最新OpenSSL-1
- 64位win7支持可用的appserv-win64-2.5.10最新
- IAR-C-FOR-SAM8-V221A带破解
- SecureCRT 7.3.6英文版 32位/64位版 注册码
- 高级编译器设计与实现
- 编译原理及实践中文版+英文版+源代码
- 编译原理中文版原书第2版pdf
- SecureCRT7.3.7和SecureFX7.3.7破解版64位支持
- opencv3.2 + contrib3.2完整编译
- Y470_Y570 2.12 bios 64位
- opencv3.4.1 32位 Debug版本 x86VS2017编译
- tomcat1.6 Windows32位及64位
- 程序员的自我修养——链接、装载与
- 编译原理 第二版 机械工业出版社
- ENVI4.8-32/64位全模块破解license无须更改
- SPM8.2 64位
- 我个人的log4cplus-1.2.2的编译与测试使
- VS2013+OSG 下编译好的ffmpeg插件
- 编译原理龙书中文版,全网最清晰带
- MAC使用apktool进行反编译
- tomcat 6 32位和64位
- STM8+COSMIC+C编译器4.3.4破解+支持STVD+支
- 编译好的cryptlib.lib,包含32位,64位,
- 已经编译好的ngrok for window 和 for lin
- 已经编译好的Osmocom-BB
- jre1.6安装版含32位和64位
- Getting Started with LLVM Core Libraries中文版
- 大工软件学院编译原理复习资料大全
- VS2013+OpenCV3.4.1+OpenCVContrib(x64)编译好
- 运行在windows7 64位下的autocad R14 汉化绿
评论
共有 条评论