Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
f920c5b5
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
接近 2 年 前同步成功
通知
12
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看板
提交
f920c5b5
编写于
7月 26, 2005
作者:
G
Geoff Thorpe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix signed/unsigned warnings.
上级
05fc7018
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
crypto/rc4/rc4test.c
crypto/rc4/rc4test.c
+2
-2
engines/e_cswift.c
engines/e_cswift.c
+1
-1
ssl/d1_both.c
ssl/d1_both.c
+1
-1
未找到文件。
crypto/rc4/rc4test.c
浏览文件 @
f920c5b5
...
@@ -216,11 +216,11 @@ int main(int argc, char *argv[])
...
@@ -216,11 +216,11 @@ int main(int argc, char *argv[])
if
(
memcmp
(
md
,
expected
,
sizeof
(
md
)))
{
if
(
memcmp
(
md
,
expected
,
sizeof
(
md
)))
{
printf
(
"error in RC4 bulk test
\n
"
);
printf
(
"error in RC4 bulk test
\n
"
);
printf
(
"output:"
);
printf
(
"output:"
);
for
(
j
=
0
;
j
<
sizeof
(
md
);
j
++
)
for
(
j
=
0
;
j
<
(
int
)
sizeof
(
md
);
j
++
)
printf
(
" %02x"
,
md
[
j
]);
printf
(
" %02x"
,
md
[
j
]);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
"expect:"
);
printf
(
"expect:"
);
for
(
j
=
0
;
j
<
sizeof
(
md
);
j
++
)
for
(
j
=
0
;
j
<
(
int
)
sizeof
(
md
);
j
++
)
printf
(
" %02x"
,
expected
[
j
]);
printf
(
" %02x"
,
expected
[
j
]);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
err
++
;
err
++
;
...
...
engines/e_cswift.c
浏览文件 @
f920c5b5
...
@@ -1062,7 +1062,7 @@ static int cswift_rand_bytes(unsigned char *buf, int num)
...
@@ -1062,7 +1062,7 @@ static int cswift_rand_bytes(unsigned char *buf, int num)
/* limitation of cswift with values not a multiple of 32 */
/* limitation of cswift with values not a multiple of 32 */
/************************************************************************/
/************************************************************************/
while
(
num
>=
sizeof
(
buf32
))
while
(
num
>=
(
int
)
sizeof
(
buf32
))
{
{
largenum
.
value
=
buf
;
largenum
.
value
=
buf
;
largenum
.
nbytes
=
sizeof
(
buf32
);
largenum
.
nbytes
=
sizeof
(
buf32
);
...
...
ssl/d1_both.c
浏览文件 @
f920c5b5
...
@@ -1228,7 +1228,7 @@ dtls1_min_mtu(void)
...
@@ -1228,7 +1228,7 @@ dtls1_min_mtu(void)
static
unsigned
int
static
unsigned
int
dtls1_guess_mtu
(
unsigned
int
curr_mtu
)
dtls1_guess_mtu
(
unsigned
int
curr_mtu
)
{
{
int
i
;
unsigned
int
i
;
if
(
curr_mtu
==
0
)
if
(
curr_mtu
==
0
)
return
g_probable_mtu
[
0
]
;
return
g_probable_mtu
[
0
]
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录