Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
0cc39579
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0cc39579
编写于
3月 08, 1999
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add missing funtions from non ANSI section of header files and add missing
ordinals to libeay.num.
上级
6420b77f
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
44 addition
and
8 deletion
+44
-8
CHANGES
CHANGES
+5
-0
crypto/asn1/asn1.h
crypto/asn1/asn1.h
+1
-0
crypto/bio/bio.h
crypto/bio/bio.h
+15
-7
crypto/bn/bn.org
crypto/bn/bn.org
+4
-0
crypto/evp/evp.h
crypto/evp/evp.h
+1
-0
crypto/pem/pem.org
crypto/pem/pem.org
+2
-0
crypto/x509v3/x509v3.h
crypto/x509v3/x509v3.h
+5
-0
e_os.h
e_os.h
+1
-1
util/libeay.num
util/libeay.num
+10
-0
未找到文件。
CHANGES
浏览文件 @
0cc39579
...
...
@@ -5,6 +5,11 @@
Changes between 0.9.1c and 0.9.2
*) Move various #ifdefs around so NO_SYSLOG, NO_DIRENT etc are now selected
in e_os.h. Audit of header files to check ANSI and non ANSI
sections: 10 functions were absent from non ANSI section and not exported
from Windows DLLs. Fixed up libeay.num for new functions.
*) Make `openssl version' output lines consistent.
[Ralf S. Engelschall]
...
...
crypto/asn1/asn1.h
浏览文件 @
0cc39579
...
...
@@ -624,6 +624,7 @@ int i2d_ASN1_GENERALIZEDTIME();
ASN1_GENERALIZEDTIME
*
d2i_ASN1_GENERALIZEDTIME
();
int
i2d_ASN1_TIME
();
ASN1_TIME
*
d2i_ASN1_TIME
();
ASN1_TIME
*
ASN1_TIME_set
();
int
i2d_ASN1_SET
();
STACK
*
d2i_ASN1_SET
();
int
a2d_ASN1_OBJECT
();
...
...
crypto/bio/bio.h
浏览文件 @
0cc39579
...
...
@@ -322,13 +322,6 @@ typedef struct bio_f_buffer_ctx_struct
#define BIO_set_app_data(s,arg) BIO_set_ex_data(s,0,(char *)arg)
#define BIO_get_app_data(s) BIO_get_ex_data(s,0)
int
BIO_get_ex_num
(
BIO
*
bio
);
int
BIO_set_ex_data
(
BIO
*
bio
,
int
idx
,
char
*
data
);
char
*
BIO_get_ex_data
(
BIO
*
bio
,
int
idx
);
void
BIO_set_ex_free_func
(
BIO
*
bio
,
int
idx
,
void
(
*
cb
)());
int
BIO_get_ex_new_index
(
long
argl
,
char
*
argp
,
int
(
*
new_func
)(),
int
(
*
dup_func
)(),
void
(
*
free_func
)());
/* BIO_s_connect() and BIO_s_socks4a_connect() */
#define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0,(char *)name)
#define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1,(char *)port)
...
...
@@ -445,6 +438,14 @@ int BIO_get_ex_new_index(long argl, char *argp, int (*new_func)(),
#endif
#ifndef NOPROTO
int
BIO_get_ex_num
(
BIO
*
bio
);
int
BIO_set_ex_data
(
BIO
*
bio
,
int
idx
,
char
*
data
);
char
*
BIO_get_ex_data
(
BIO
*
bio
,
int
idx
);
void
BIO_set_ex_free_func
(
BIO
*
bio
,
int
idx
,
void
(
*
cb
)());
int
BIO_get_ex_new_index
(
long
argl
,
char
*
argp
,
int
(
*
new_func
)(),
int
(
*
dup_func
)(),
void
(
*
free_func
)());
# if defined(WIN16) && defined(_WINDLL)
BIO_METHOD
*
BIO_s_file_internal
(
void
);
BIO
*
BIO_new_file_internal
(
char
*
filename
,
char
*
mode
);
...
...
@@ -461,6 +462,13 @@ BIO *BIO_new_fp(FILE *stream, int close_flag);
# define BIO_new_fp_internal BIO_s_file
# endif
/* FP_API */
#else
int
BIO_get_ex_num
();
int
BIO_set_ex_data
();
char
*
BIO_get_ex_data
();
void
BIO_set_ex_free_func
();
int
BIO_get_ex_new_index
();
# if defined(WIN16) && defined(_WINDLL)
BIO_METHOD
*
BIO_s_file_internal
();
BIO
*
BIO_new_file_internal
();
...
...
crypto/bn/bn.org
浏览文件 @
0cc39579
...
...
@@ -534,6 +534,7 @@ BN_MONT_CTX *BN_MONT_CTX_new();
void BN_MONT_CTX_init();
void BN_MONT_CTX_free();
int BN_MONT_CTX_set();
BN_MONT_CTX *BN_MONT_CTX_copy();
BN_BLINDING *BN_BLINDING_new();
void BN_BLINDING_free();
...
...
@@ -541,6 +542,9 @@ int BN_BLINDING_update();
int BN_BLINDING_convert();
int BN_BLINDING_invert();
void BN_set_params();
int BN_get_params();
void bn_mul_normal();
void bn_mul_comba8();
void bn_mul_comba4();
...
...
crypto/evp/evp.h
浏览文件 @
0cc39579
...
...
@@ -694,6 +694,7 @@ EVP_MD *EVP_sha1();
EVP_MD
*
EVP_dss
();
EVP_MD
*
EVP_dss1
();
EVP_MD
*
EVP_mdc2
();
EVP_MD
*
EVP_ripemd160
();
EVP_CIPHER
*
EVP_enc_null
();
EVP_CIPHER
*
EVP_des_ecb
();
...
...
crypto/pem/pem.org
浏览文件 @
0cc39579
...
...
@@ -482,6 +482,8 @@ int PEM_ASN1_write_bio();
int PEM_SealInit();
void PEM_SealUpdate();
int PEM_SealFinal();
void PEM_SignInit();
void PEM_SignUpdate();
int PEM_SignFinal();
void ERR_load_PEM_strings();
...
...
crypto/x509v3/x509v3.h
浏览文件 @
0cc39579
...
...
@@ -290,6 +290,11 @@ void GENERAL_NAME_free();
STACK
*
i2v_GENERAL_NAME
();
GENERAL_NAME
*
v2i_GENERAL_NAME
();
int
i2d_AUTHORITY_KEYID
();
AUTHORITY_KEYID
*
d2i_AUTHORITY_KEYID
();
AUTHORITY_KEYID
*
AUTHORITY_KEYID_new
();
void
AUTHORITY_KEYID_free
();
int
i2d_PKEY_USAGE_PERIOD
();
PKEY_USAGE_PERIOD
*
d2i_PKEY_USAGE_PERIOD
();
PKEY_USAGE_PERIOD
*
PKEY_USAGE_PERIOD_new
();
...
...
e_os.h
浏览文件 @
0cc39579
...
...
@@ -149,8 +149,8 @@ extern "C" {
#if !defined(WINNT)
#define NO_SYSLOG
#define NO_DIRENT
#endif
#define NO_DIRENT
#endif
...
...
util/libeay.num
浏览文件 @
0cc39579
...
...
@@ -1219,3 +1219,13 @@ BIO_f_reliable 1244
PKCS7_dataFinal 1245
PKCS7_dataDecode 1246
X509V3_EXT_CRL_add_conf 1247
BN_set_params 1248
BN_get_params 1249
BIO_get_ex_num 1250
BIO_set_ex_free_func 1251
EVP_ripemd160 1252
ASN1_TIME_set 1253
i2d_AUTHORITY_KEYID 1254
d2i_AUTHORITY_KEYID 1255
AUTHORITY_KEYID_new 1256
AUTHORITY_KEYID_free 1257
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录