Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
19ec2f41
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看板
提交
19ec2f41
编写于
2月 28, 2010
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix warnings (note that gcc 4.2 has a bug that makes one of its
warnings hard to fix without major surgery).
上级
2b13f803
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
5 deletion
+5
-5
crypto/evp/p5_crpt2.c
crypto/evp/p5_crpt2.c
+1
-1
crypto/evp/p_sign.c
crypto/evp/p_sign.c
+2
-2
crypto/evp/p_verify.c
crypto/evp/p_verify.c
+2
-2
未找到文件。
crypto/evp/p5_crpt2.c
浏览文件 @
19ec2f41
...
...
@@ -235,7 +235,7 @@ int PKCS5_v2_PBKDF2_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
const
unsigned
char
*
pbuf
;
int
saltlen
,
iter
,
plen
;
int
rv
=
0
;
unsigned
int
keylen
;
unsigned
int
keylen
=
0
;
int
prf_nid
,
hmac_md_nid
;
PBKDF2PARAM
*
kdf
=
NULL
;
const
EVP_MD
*
prfmd
;
...
...
crypto/evp/p_sign.c
浏览文件 @
19ec2f41
...
...
@@ -80,8 +80,9 @@ int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, unsigned int *siglen,
{
unsigned
char
m
[
EVP_MAX_MD_SIZE
];
unsigned
int
m_len
;
int
i
,
ok
=
0
,
v
;
int
i
=
0
,
ok
=
0
,
v
;
MS_STATIC
EVP_MD_CTX
tmp_ctx
;
EVP_PKEY_CTX
*
pkctx
=
NULL
;
*
siglen
=
0
;
EVP_MD_CTX_init
(
&
tmp_ctx
);
...
...
@@ -93,7 +94,6 @@ int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, unsigned int *siglen,
if
(
ctx
->
digest
->
flags
&
EVP_MD_FLAG_PKEY_METHOD_SIGNATURE
)
{
EVP_PKEY_CTX
*
pkctx
=
NULL
;
size_t
sltmp
=
(
size_t
)
EVP_PKEY_size
(
pkey
);
i
=
0
;
pkctx
=
EVP_PKEY_CTX_new
(
pkey
,
NULL
);
...
...
crypto/evp/p_verify.c
浏览文件 @
19ec2f41
...
...
@@ -67,8 +67,9 @@ int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
{
unsigned
char
m
[
EVP_MAX_MD_SIZE
];
unsigned
int
m_len
;
int
i
,
ok
=
0
,
v
;
int
i
=
0
,
ok
=
0
,
v
;
MS_STATIC
EVP_MD_CTX
tmp_ctx
;
EVP_PKEY_CTX
*
pkctx
=
NULL
;
EVP_MD_CTX_init
(
&
tmp_ctx
);
if
(
!
EVP_MD_CTX_copy_ex
(
&
tmp_ctx
,
ctx
))
...
...
@@ -79,7 +80,6 @@ int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf,
if
(
ctx
->
digest
->
flags
&
EVP_MD_FLAG_PKEY_METHOD_SIGNATURE
)
{
EVP_PKEY_CTX
*
pkctx
=
NULL
;
i
=
-
1
;
pkctx
=
EVP_PKEY_CTX_new
(
pkey
,
NULL
);
if
(
!
pkctx
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录