Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
a8eeb155
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
大约 1 年 前同步成功
通知
9
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a8eeb155
编写于
1月 14, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Avoid some warnings, and run "make update".
上级
2f878669
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
46 addition
and
15 deletion
+46
-15
crypto/err/Makefile.ssl
crypto/err/Makefile.ssl
+7
-6
crypto/err/err_all.c
crypto/err/err_all.c
+1
-0
crypto/mem_dbg.c
crypto/mem_dbg.c
+7
-3
crypto/pkcs7/pk7_mime.c
crypto/pkcs7/pk7_mime.c
+3
-3
crypto/rand/Makefile.ssl
crypto/rand/Makefile.ssl
+5
-3
crypto/x509/Makefile.ssl
crypto/x509/Makefile.ssl
+18
-0
util/libeay.num
util/libeay.num
+5
-0
未找到文件。
crypto/err/Makefile.ssl
浏览文件 @
a8eeb155
...
...
@@ -96,12 +96,13 @@ err_all.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
err_all.o
:
../../include/openssl/mdc2.h ../../include/openssl/objects.h
err_all.o
:
../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
err_all.o
:
../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
err_all.o
:
../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
err_all.o
:
../../include/openssl/rc4.h ../../include/openssl/rc5.h
err_all.o
:
../../include/openssl/ripemd.h ../../include/openssl/rsa.h
err_all.o
:
../../include/openssl/safestack.h ../../include/openssl/sha.h
err_all.o
:
../../include/openssl/stack.h ../../include/openssl/x509.h
err_all.o
:
../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
err_all.o
:
../../include/openssl/pkcs7.h ../../include/openssl/rand.h
err_all.o
:
../../include/openssl/rc2.h ../../include/openssl/rc4.h
err_all.o
:
../../include/openssl/rc5.h ../../include/openssl/ripemd.h
err_all.o
:
../../include/openssl/rsa.h ../../include/openssl/safestack.h
err_all.o
:
../../include/openssl/sha.h ../../include/openssl/stack.h
err_all.o
:
../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
err_all.o
:
../../include/openssl/x509v3.h
err_prn.o
:
../../include/openssl/bio.h ../../include/openssl/buffer.h
err_prn.o
:
../../include/openssl/crypto.h ../../include/openssl/e_os.h
err_prn.o
:
../../include/openssl/e_os2.h ../../include/openssl/err.h
...
...
crypto/err/err_all.c
浏览文件 @
a8eeb155
...
...
@@ -80,6 +80,7 @@
#include <openssl/x509v3.h>
#include <openssl/conf.h>
#include <openssl/pkcs12.h>
#include <openssl/rand.h>
#include <openssl/err.h>
void
ERR_load_crypto_strings
(
void
)
...
...
crypto/mem_dbg.c
浏览文件 @
a8eeb155
...
...
@@ -592,9 +592,11 @@ static void print_leak(MEM *m, MEM_LEAK *l)
amip
=
m
->
app_info
;
ami_cnt
=
0
;
if
(
amip
)
ti
=
amip
->
thread
;
while
(
amip
&&
amip
->
thread
==
ti
)
if
(
!
amip
)
return
;
ti
=
amip
->
thread
;
do
{
int
buf_len
;
int
info_len
;
...
...
@@ -622,6 +624,8 @@ static void print_leak(MEM *m, MEM_LEAK *l)
amip
=
amip
->
next
;
}
while
(
amip
&&
amip
->
thread
==
ti
);
#ifdef LEVITTE_DEBUG
if
(
amip
)
{
...
...
crypto/pkcs7/pk7_mime.c
浏览文件 @
a8eeb155
...
...
@@ -416,7 +416,7 @@ static STACK *mime_parse_hdr(BIO *bio)
headers
=
sk_new
(
mime_hdr_cmp
);
while
((
len
=
BIO_gets
(
bio
,
linebuf
,
MAX_SMLEN
))
>
0
)
{
/* If whitespace at line start then continuation line */
if
(
mhdr
&&
isspace
(
linebuf
[
0
]))
state
=
MIME_NAME
;
if
(
mhdr
&&
isspace
(
(
unsigned
char
)
linebuf
[
0
]))
state
=
MIME_NAME
;
else
state
=
MIME_START
;
ntmp
=
NULL
;
/* Go through all characters */
...
...
@@ -520,7 +520,7 @@ static char *strip_start(char *name)
/* Else null string */
return
NULL
;
}
if
(
!
isspace
(
c
))
return
p
;
if
(
!
isspace
(
(
unsigned
char
)
c
))
return
p
;
}
return
NULL
;
}
...
...
@@ -538,7 +538,7 @@ static char *strip_end(char *name)
*
p
=
0
;
return
name
;
}
if
(
isspace
(
c
))
*
p
=
0
;
if
(
isspace
(
(
unsigned
char
)
c
))
*
p
=
0
;
else
return
name
;
}
return
NULL
;
...
...
crypto/rand/Makefile.ssl
浏览文件 @
a8eeb155
...
...
@@ -79,9 +79,11 @@ clean:
# DO NOT DELETE THIS LINE -- make depend depends on it.
md_rand.o
:
../../include/openssl/crypto.h ../../include/openssl/e_os.h
md_rand.o
:
../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
md_rand.o
:
../../include/openssl/opensslv.h ../../include/openssl/rand.h
md_rand.o
:
../../include/openssl/sha.h ../../include/openssl/stack.h
md_rand.o
:
../../include/openssl/e_os2.h ../../include/openssl/err.h
md_rand.o
:
../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
md_rand.o
:
../../include/openssl/rand.h ../../include/openssl/sha.h
md_rand.o
:
../../include/openssl/stack.h
rand_err.o
:
../../include/openssl/err.h ../../include/openssl/rand.h
rand_lib.o
:
../../include/openssl/rand.h
randfile.o
:
../../include/openssl/e_os.h ../../include/openssl/e_os2.h
randfile.o
:
../../include/openssl/opensslconf.h ../../include/openssl/rand.h
crypto/x509/Makefile.ssl
浏览文件 @
a8eeb155
...
...
@@ -123,6 +123,24 @@ by_file.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
by_file.o
:
../../include/openssl/safestack.h ../../include/openssl/sha.h
by_file.o
:
../../include/openssl/stack.h ../../include/openssl/x509.h
by_file.o
:
../../include/openssl/x509_vfy.h ../cryptlib.h
x509_att.o
:
../../include/openssl/asn1.h ../../include/openssl/bio.h
x509_att.o
:
../../include/openssl/blowfish.h ../../include/openssl/bn.h
x509_att.o
:
../../include/openssl/buffer.h ../../include/openssl/cast.h
x509_att.o
:
../../include/openssl/conf.h ../../include/openssl/crypto.h
x509_att.o
:
../../include/openssl/des.h ../../include/openssl/dh.h
x509_att.o
:
../../include/openssl/dsa.h ../../include/openssl/e_os.h
x509_att.o
:
../../include/openssl/e_os2.h ../../include/openssl/err.h
x509_att.o
:
../../include/openssl/evp.h ../../include/openssl/idea.h
x509_att.o
:
../../include/openssl/lhash.h ../../include/openssl/md2.h
x509_att.o
:
../../include/openssl/md5.h ../../include/openssl/mdc2.h
x509_att.o
:
../../include/openssl/objects.h ../../include/openssl/opensslconf.h
x509_att.o
:
../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
x509_att.o
:
../../include/openssl/rc2.h ../../include/openssl/rc4.h
x509_att.o
:
../../include/openssl/rc5.h ../../include/openssl/ripemd.h
x509_att.o
:
../../include/openssl/rsa.h ../../include/openssl/safestack.h
x509_att.o
:
../../include/openssl/sha.h ../../include/openssl/stack.h
x509_att.o
:
../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
x509_att.o
:
../../include/openssl/x509v3.h ../cryptlib.h
x509_cmp.o
:
../../include/openssl/asn1.h ../../include/openssl/bio.h
x509_cmp.o
:
../../include/openssl/blowfish.h ../../include/openssl/bn.h
x509_cmp.o
:
../../include/openssl/buffer.h ../../include/openssl/cast.h
...
...
util/libeay.num
浏览文件 @
a8eeb155
...
...
@@ -2173,3 +2173,8 @@ X509_radd_attr 2197
X509_ATTRIBUTE_iget_data 2198
X509_delete_attr 2199
X509_get_attr_by_OBJ 2200
RAND_add 2201
BIO_number_written 2202
BIO_number_read 2203
X509_STORE_CTX_rget_chain 2204
ERR_load_RAND_strings 2205
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录