Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b058a080
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看板
提交
b058a080
编写于
1月 17, 2000
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
It doesn't make sense to try see if these variables are negative, since they're unsigned.
上级
e7399bf5
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
6 addition
and
6 deletion
+6
-6
apps/speed.c
apps/speed.c
+2
-2
crypto/bio/bss_bio.c
crypto/bio/bss_bio.c
+2
-2
ssl/s3_pkt.c
ssl/s3_pkt.c
+2
-2
未找到文件。
apps/speed.c
浏览文件 @
b058a080
...
...
@@ -1044,7 +1044,7 @@ int MAIN(int argc, char **argv)
{
rsa_num
=
DSA_sign
(
EVP_PKEY_DSA
,
buf
,
20
,
buf2
,
&
kk
,
dsa_key
[
j
]);
if
(
rsa_num
<
=
0
)
if
(
rsa_num
=
=
0
)
{
BIO_printf
(
bio_err
,
"DSA sign failure
\n
"
);
ERR_print_errors
(
bio_err
);
...
...
@@ -1067,7 +1067,7 @@ int MAIN(int argc, char **argv)
{
rsa_num2
=
DSA_verify
(
EVP_PKEY_DSA
,
buf
,
20
,
buf2
,
kk
,
dsa_key
[
j
]);
if
(
rsa_num2
<
=
0
)
if
(
rsa_num2
=
=
0
)
{
BIO_printf
(
bio_err
,
"DSA verify failure
\n
"
);
ERR_print_errors
(
bio_err
);
...
...
crypto/bio/bss_bio.c
浏览文件 @
b058a080
...
...
@@ -250,7 +250,7 @@ static size_t bio_nread(BIO *bio, char **buf, size_t num)
available
=
bio_nread0
(
bio
,
buf
);
if
(
num
>
available
)
num
=
available
;
if
(
num
<
=
0
)
if
(
num
=
=
0
)
return
num
;
b
=
bio
->
ptr
;
...
...
@@ -406,7 +406,7 @@ static size_t bio_nwrite(BIO *bio, char **buf, size_t num)
space
=
bio_nwrite0
(
bio
,
buf
);
if
(
num
>
space
)
num
=
space
;
if
(
num
<
=
0
)
if
(
num
=
=
0
)
return
num
;
b
=
bio
->
ptr
;
assert
(
b
!=
NULL
);
...
...
ssl/s3_pkt.c
浏览文件 @
b058a080
...
...
@@ -548,7 +548,7 @@ static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
/* if it went, fall through and send more stuff */
}
if
(
len
<
=
0
)
return
(
len
);
if
(
len
=
=
0
)
return
(
len
);
wr
=
&
(
s
->
s3
->
wrec
);
wb
=
&
(
s
->
s3
->
wbuf
);
...
...
@@ -962,7 +962,7 @@ start:
memcpy
(
buf
,
&
(
rr
->
data
[
rr
->
off
]),(
unsigned
int
)
n
);
rr
->
length
-=
n
;
rr
->
off
+=
n
;
if
(
rr
->
length
<
=
0
)
if
(
rr
->
length
=
=
0
)
{
s
->
rstate
=
SSL_ST_READ_HEADER
;
rr
->
off
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录