Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
e0f12c41
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看板
提交
e0f12c41
编写于
6月 12, 1999
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Avoid some warnings (on silly compilers).
上级
5b5dd0c0
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
9 addition
and
9 deletion
+9
-9
crypto/bn/bn_print.c
crypto/bn/bn_print.c
+1
-1
crypto/des/destest.c
crypto/des/destest.c
+4
-4
crypto/dh/dhtest.c
crypto/dh/dhtest.c
+1
-1
crypto/dsa/dsatest.c
crypto/dsa/dsatest.c
+1
-1
crypto/sha/sha1dgst.c
crypto/sha/sha1dgst.c
+1
-1
crypto/sha/sha_dgst.c
crypto/sha/sha_dgst.c
+1
-1
未找到文件。
crypto/bn/bn_print.c
浏览文件 @
e0f12c41
...
...
@@ -62,7 +62,7 @@
#include <openssl/buffer.h>
#include "bn_lcl.h"
const
static
char
*
Hex
=
"0123456789ABCDEF"
;
static
const
char
*
Hex
=
"0123456789ABCDEF"
;
/* Must 'Free' the returned data */
char
*
BN_bn2hex
(
BIGNUM
*
a
)
...
...
crypto/des/destest.c
浏览文件 @
e0f12c41
...
...
@@ -741,25 +741,25 @@ plain[8+4], plain[8+5], plain[8+6], plain[8+7]);
if
(
lqret
[
0
]
!=
0x327eba8dL
)
{
printf
(
"quad_cksum error, out[0] %08lx is not %08lx
\n
"
,
(
unsigned
long
)
lqret
[
0
],
0x327eba8dL
);
(
unsigned
long
)
lqret
[
0
],
0x327eba8d
U
L
);
err
=
1
;
}
if
(
lqret
[
1
]
!=
0x201a49ccL
)
{
printf
(
"quad_cksum error, out[1] %08lx is not %08lx
\n
"
,
(
unsigned
long
)
lqret
[
1
],
0x201a49ccL
);
(
unsigned
long
)
lqret
[
1
],
0x201a49cc
U
L
);
err
=
1
;
}
if
(
lqret
[
2
]
!=
0x70d7a63aL
)
{
printf
(
"quad_cksum error, out[2] %08lx is not %08lx
\n
"
,
(
unsigned
long
)
lqret
[
2
],
0x70d7a63aL
);
(
unsigned
long
)
lqret
[
2
],
0x70d7a63a
U
L
);
err
=
1
;
}
if
(
lqret
[
3
]
!=
0x501c2c26L
)
{
printf
(
"quad_cksum error, out[3] %08lx is not %08lx
\n
"
,
(
unsigned
long
)
lqret
[
3
],
0x501c2c26L
);
(
unsigned
long
)
lqret
[
3
],
0x501c2c26
U
L
);
err
=
1
;
}
#endif
...
...
crypto/dh/dhtest.c
浏览文件 @
e0f12c41
...
...
@@ -180,7 +180,7 @@ static void MS_CALLBACK cb(int p, int n, void *arg)
if
(
p
==
2
)
c
=
'*'
;
if
(
p
==
3
)
c
=
'\n'
;
BIO_write
((
BIO
*
)
arg
,
&
c
,
1
);
BIO_flush
((
BIO
*
)
arg
);
(
void
)
BIO_flush
((
BIO
*
)
arg
);
#ifdef LINT
p
=
n
;
#endif
...
...
crypto/dsa/dsatest.c
浏览文件 @
e0f12c41
...
...
@@ -206,7 +206,7 @@ static void MS_CALLBACK dsa_cb(int p, int n, char *arg)
if
(
p
==
2
)
{
c
=
'*'
;
ok
++
;
}
if
(
p
==
3
)
c
=
'\n'
;
BIO_write
((
BIO
*
)
arg
,
&
c
,
1
);
BIO_flush
((
BIO
*
)
arg
);
(
void
)
BIO_flush
((
BIO
*
)
arg
);
if
(
!
ok
&&
(
p
==
0
)
&&
(
num
>
1
))
{
...
...
crypto/sha/sha1dgst.c
浏览文件 @
e0f12c41
...
...
@@ -114,7 +114,7 @@ void SHA1_Init(SHA_CTX *c)
c
->
num
=
0
;
}
void
SHA1_Update
(
SHA_CTX
*
c
,
const
register
unsigned
char
*
data
,
void
SHA1_Update
(
SHA_CTX
*
c
,
register
const
unsigned
char
*
data
,
unsigned
long
len
)
{
register
SHA_LONG
*
p
;
...
...
crypto/sha/sha_dgst.c
浏览文件 @
e0f12c41
...
...
@@ -109,7 +109,7 @@ void SHA_Init(SHA_CTX *c)
c
->
num
=
0
;
}
void
SHA_Update
(
SHA_CTX
*
c
,
const
register
unsigned
char
*
data
,
void
SHA_Update
(
SHA_CTX
*
c
,
register
const
unsigned
char
*
data
,
unsigned
long
len
)
{
register
SHA_LONG
*
p
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录