资源简介
已经编译好的OPENSSL 1.1最新官方库,WIN32平台使用,可直接添加的VC2013使用,添加方式加入头文件和库文件:#include
#include
#include
#include
#include
#include
#pragma comment(lib, "libssl.lib")
#pragma comment(lib, "libcrypto.lib")
本人正在使用的VC SSL版本,可以正常连接到加密传输TLS1.2的服务器上。
代码片段和文件信息
/*
* Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the “License“). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#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_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3349 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\aes.h
文件 3508 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\appli
文件 33627 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\asn1.h
文件 13539 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\asn1err.h
文件 32940 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\asn1t.h
文件 395 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\asn1_mac.h
文件 2398 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\async.h
文件 1196 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\asyncerr.h
文件 34655 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\bio.h
文件 5836 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\bioerr.h
文件 1847 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\blowfish.h
文件 20345 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\bn.h
文件 4591 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\bnerr.h
文件 1600 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\buffer.h
文件 752 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\buffererr.h
文件 3179 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\camellia.h
文件 1674 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cast.h
文件 1064 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cmac.h
文件 16412 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cms.h
文件 10840 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cmserr.h
文件 1328 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\comp.h
文件 1081 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\comperr.h
文件 5601 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\conf.h
文件 2741 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\conferr.h
文件 1300 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\conf_api.h
文件 17162 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\crypto.h
文件 1449 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cryptoerr.h
文件 15990 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\ct.h
文件 3402 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\cterr.h
文件 7627 2018-03-15 11:58 OpenSSL-_Out32dll\inc32\openssl\des.h
............此处省略86个文件信息
- 上一篇:AP6212 驱动
- 下一篇:Dialog风格Activity全屏显示悬浮窗
相关资源
- vc动画图形的制作
- 基于MVC的酒店管理系统
- VCS2016.6 ubuntu安装与破解方法
- spring-mvc-官方中文文档
- VC实现的数字水印图像处理
- Redis 3.0 中文版 - v1.1.pdf
- pycairo-1.19.0-cp38-cp38-win_amd64.whl
- Delphi XE8 update 1 一键激活工具 Activat
- synopsys vcs 的安装教程
- 联想L-IG41M3 V1.1 更新BIOS
- MVC登录增删改查界面
- 3.1.1版本hadoop 安装需要的工具包
- 思科routing and switching CCIE 5.0诊断题v
- 编译好的openssl
- TFIDF算法实现
- DSP0222(NCSI spec)-1.10
- PhotoSwipe4.1.1Demo-图片浏览插件仿微信朋
- 指纹提取与识别系统VC源码opencv
- 2020年湖南省职业院校技能大赛Web应用
- 采集卡驱动DRIVER.CY3014.DIRECTSOUND_YS 1.
- 定时器的配置文件两种方式:springm
- PVCurve.rar
- Elecard-HEVC-Analyzer.zip
- openssl1.1.1源码
- rt-thread3.1.1-lwip2.0.2完整工程代码
- VCDS5053固件19.61含升级教程.zip181635
- Win64版Wget.exe1.16.1 64位
- vc图像直方图均衡化和直方图显示
- delphi VCLZIPFOR D7-XE5
- openldap-2.2.29-db-4.3.29-openssl-0.9.8a-win32
评论
共有 条评论