资源简介
x64 libcurl编译好的版本VS可用,里面包含curl7.74,openssl,zlib1.2.11都是最新版本
curl version: libcurl/7.74.0-DEV OpenSSL/1.1.1d (Schannel) zlib/1.2.11
代码片段和文件信息
/*
* 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_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 121020 2020-12-18 03:29 include\curl\curl.h
文件 3041 2020-12-09 14:38 include\curl\curlver.h
文件 3980 2020-12-09 14:38 include\curl\easy.h
文件 2069 2020-12-09 14:38 include\curl\mprintf.h
文件 17207 2020-12-09 14:38 include\curl\multi.h
文件 2379 2020-12-09 14:38 include\curl\options.h
文件 1339 2020-12-09 14:38 include\curl\stdcheaders.h
文件 19028 2020-12-09 14:38 include\curl\system.h
文件 42658 2020-12-09 14:38 include\curl\typecheck-gcc.h
文件 4486 2020-12-09 14:38 include\curl\urlapi.h
文件 3349 2020-12-18 03:08 include\openssl\aes.h
文件 3508 2020-12-18 03:08 include\openssl\appli
文件 33627 2020-12-18 03:08 include\openssl\asn1.h
文件 14599 2020-12-18 03:08 include\openssl\asn1err.h
文件 32940 2020-12-18 03:08 include\openssl\asn1t.h
文件 395 2020-12-18 03:08 include\openssl\asn1_mac.h
文件 2398 2020-12-18 03:08 include\openssl\async.h
文件 1326 2020-12-18 03:08 include\openssl\asyncerr.h
文件 34907 2020-12-18 03:08 include\openssl\bio.h
文件 6400 2020-12-18 03:08 include\openssl\bioerr.h
文件 1847 2020-12-18 03:08 include\openssl\blowfish.h
文件 22135 2020-12-18 03:08 include\openssl\bn.h
文件 4907 2020-12-18 03:08 include\openssl\bnerr.h
文件 1600 2020-12-18 03:08 include\openssl\buffer.h
文件 820 2020-12-18 03:08 include\openssl\buffererr.h
文件 3179 2020-12-18 03:08 include\openssl\camellia.h
文件 1674 2020-12-18 03:08 include\openssl\cast.h
文件 1064 2020-12-18 03:08 include\openssl\cmac.h
文件 16379 2020-12-18 03:08 include\openssl\cms.h
文件 11160 2020-12-18 03:08 include\openssl\cmserr.h
............此处省略165个文件信息
相关资源
- OpenSSL工具
- curl+openssl开发库VS2017x64
- Win64OpenSSL-1_0_1e.exe
- 最新的OPENSSL1.1.0编译好的
- ios openssl静态库 (libssl.a和libcrypto.a)
- openssl+openssh离线安装包
- Win32OpenSSL-1_1_1g.exe
- stm32_RSA.zip
- OPENSSL AES 加解密例程
- libcurl支持https的dll和lib(包含openssl的
- win10 dll库libcurl 64位
- libcurl支持https访问curl支持openssl协议编
- openssl开发包编写建立在SSL上的C/S课程
- libcurl相关资源
- libqr库的源码及zlib库文件
- zlib-1.2.11.tar
- 使用zlib-1.2.11编译后生成,32位的zli
- 使用ZLIB库压缩解压源码支持多级文件
- arm64-v8a用OpenSSL环境配置文件
- 编译成功的openssl 0.9.8e
- libpng的库文件,lib文件,dll文件
- RSA 1024 加密 解密
- tc8 x64 openssl库文件补丁
- libpng.lib,zlib.lib,libpng16.dll
- MINIZIP 压缩解压缩 附编译好的zlibsta
- 《openssl编程》当前完整版本
- zlib123-dll.zip
- tomcat,https加密方式jsse.openssl
- zlib的windows端应用工具
- Indy SSL Lib For Delphi7 OpenSSL
评论
共有 条评论