资源简介
已经编译完成的最新的openssl-1.0.1h版本,x64位适用于windows的。请注意。
代码片段和文件信息
#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 *fpchar mod)
{ return _setmode (_fileno(fp)mod==‘b‘?_O_BINARY:_O_TEXT); }
#ifdef __cplusplus
extern “C“ {
#endif
__declspec(dllexport)
void **
#if defined(__BORLANDC__)
__stdcall /* __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. */
#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[APPlink_LSEEK] = _lseek;
OPENSSL_ApplinkTable[APPlink_CLOSE] = _close;
once = 0;
}
return OPENSSL_ApplinkTable;
}
#ifdef __cplusplus
}
#endif
#endif
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1649664 2014-06-12 17:58 ssl\bin\libeay32.dll
文件 466432 2014-06-12 17:58 ssl\bin\openssl.exe
文件 345600 2014-06-12 17:58 ssl\bin\ssleay32.dll
文件 5507 2014-06-12 17:58 ssl\include\openssl\aes.h
文件 2892 2014-06-12 17:58 ssl\include\openssl\appli
文件 52190 2014-06-12 17:58 ssl\include\openssl\asn1.h
文件 30092 2014-06-12 17:58 ssl\include\openssl\asn1t.h
文件 19143 2014-06-12 17:58 ssl\include\openssl\asn1_mac.h
文件 32987 2014-06-12 17:58 ssl\include\openssl\bio.h
文件 5143 2014-06-12 17:58 ssl\include\openssl\blowfish.h
文件 36559 2014-06-12 17:58 ssl\include\openssl\bn.h
文件 4652 2014-06-12 17:58 ssl\include\openssl\buffer.h
文件 4956 2014-06-12 17:58 ssl\include\openssl\camellia.h
文件 4492 2014-06-12 17:58 ssl\include\openssl\cast.h
文件 3244 2014-06-12 17:58 ssl\include\openssl\cmac.h
文件 19927 2014-06-12 17:58 ssl\include\openssl\cms.h
文件 1978 2014-06-12 17:58 ssl\include\openssl\comp.h
文件 9848 2014-06-12 17:58 ssl\include\openssl\conf.h
文件 4080 2014-06-12 17:58 ssl\include\openssl\conf_api.h
文件 24337 2014-06-12 17:58 ssl\include\openssl\crypto.h
文件 10849 2014-06-12 17:58 ssl\include\openssl\des.h
文件 18238 2014-06-12 17:58 ssl\include\openssl\des_old.h
文件 9979 2014-06-12 17:58 ssl\include\openssl\dh.h
文件 12057 2014-06-12 17:58 ssl\include\openssl\dsa.h
文件 18095 2014-06-12 17:58 ssl\include\openssl\dso.h
文件 8026 2014-06-12 17:58 ssl\include\openssl\dtls1.h
文件 540 2014-06-12 17:58 ssl\include\openssl\ebcdic.h
文件 46413 2014-06-12 17:58 ssl\include\openssl\ec.h
文件 4682 2014-06-12 17:58 ssl\include\openssl\ecdh.h
文件 10510 2014-06-12 17:58 ssl\include\openssl\ecdsa.h
............此处省略73个文件信息
- 上一篇:爱房网源代码
- 下一篇:CC3200中文数据手册
相关资源
- openssl已编译好的静态库
- wireless_tools.29+libnl-1.1+wpa_supplicant-2.6
- openssl-devel
- 升级OpenSSH_7.4p1完整源码包
- win10 VS2017 编译成功的openssl 32位和64位
- openssl生成的out32dll文件
- libevent-2.1.8-stable for iOS 包含静态库与
- openssl lib
- 这是一个基于openssl库的对文件进行加
- openssl编程.pdf
- openssl-0.9.8h-1-bin
- libcurl.a(with zlib openssl libssh2) 含r
- Network Security with OpenSSL 免费
- Indy10.6和OpenSSL解决D7下GET&POST;乱码
- openssl-0.9.8.1302.tar.Z
- libcurl静态库[支持https]
- openssh-7.9p1+openssl-1.1.0h一键升级
- windows下调用openssl需要的include和lib
- Win64OpenSSL_Light-1_0_2d-2
- 编译完后的OpenSSL不需安装版本
- openssl-1.0.1e
- openssl-1.0.1i.tar.gz
- nginx1.9.0和其所用到所有包
- 国密算法文档和代码。基于openssl实现
- openssl1.1.1RSA、ECC、SM2身份认证Demo及文
- openssl 32位 包
- openssl-1.0.1p.tar.gz
- openssl-1.0.1t.tar.gz
- RedHat 6.5离线安装openssl-devel顺序
- openssl-1.0.0o.tar.gz
评论
共有 条评论