Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
3613e6fc
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,发现更多精彩内容 >>
提交
3613e6fc
编写于
2月 20, 2002
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
simplifications
Submitted by: Nils Larsch
上级
f8e21776
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
28 deletion
+11
-28
crypto/ecdsa/ecs_asn1.c
crypto/ecdsa/ecs_asn1.c
+3
-24
crypto/ecdsa/ecs_ossl.c
crypto/ecdsa/ecs_ossl.c
+8
-4
未找到文件。
crypto/ecdsa/ecs_asn1.c
浏览文件 @
3613e6fc
...
...
@@ -61,29 +61,10 @@
static
point_conversion_form_t
POINT_CONVERSION_FORM
=
POINT_CONVERSION_COMPRESSED
;
/* Override the default new methods */
static
int
sig_cb
(
int
operation
,
ASN1_VALUE
**
pval
,
const
ASN1_ITEM
*
it
)
{
if
(
operation
==
ASN1_OP_NEW_PRE
)
{
ECDSA_SIG
*
sig
;
sig
=
OPENSSL_malloc
(
sizeof
(
ECDSA_SIG
));
if
(
sig
==
NULL
)
{
ECDSAerr
(
ECDSA_F_SIG_CB
,
ERR_R_MALLOC_FAILURE
);
return
0
;
}
sig
->
r
=
NULL
;
sig
->
s
=
NULL
;
*
pval
=
(
ASN1_VALUE
*
)
sig
;
return
2
;
}
return
1
;
}
ASN1_SEQUENCE_cb
(
ECDSA_SIG
,
sig_cb
)
=
{
ASN1_SEQUENCE
(
ECDSA_SIG
)
=
{
ASN1_SIMPLE
(
ECDSA_SIG
,
r
,
CBIGNUM
),
ASN1_SIMPLE
(
ECDSA_SIG
,
s
,
CBIGNUM
)
}
ASN1_SEQUENCE_END
_cb
(
ECDSA_SIG
,
ECDSA_SIG
)
}
ASN1_SEQUENCE_END
(
ECDSA_SIG
)
IMPLEMENT_ASN1_FUNCTIONS_const
(
ECDSA_SIG
)
...
...
@@ -439,9 +420,7 @@ ECDSA *ECDSA_x9_62parameters2ecdsa(const X9_62_EC_PARAMETERS *params, EC
if
((
point
=
EC_POINT_new
(
ret
->
group
))
==
NULL
)
goto
err
;
}
else
OPENSSL_ECDSA_ABORT
(
ECDSA_R_WRONG_FIELD_IDENTIFIER
)
/* FIXME!!! It seems like the comparison of data with 0 isn't the
intended thing. */
if
(
params
->
curve
->
seed
!=
NULL
&&
params
->
curve
->
seed
->
data
!=
0
)
if
(
params
->
curve
->
seed
!=
NULL
)
{
if
(
ret
->
seed
!=
NULL
)
OPENSSL_free
(
ret
->
seed
);
...
...
crypto/ecdsa/ecs_ossl.c
浏览文件 @
3613e6fc
...
...
@@ -285,16 +285,20 @@ static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dgst_len, ECDSA *
reason
=
ECDSA_R_SIGNATURE_MALLOC_FAILED
;
goto
err
;
}
ret
->
r
=
r
;
ret
->
s
=
s
;
if
(
BN_copy
(
ret
->
r
,
r
)
==
NULL
||
BN_copy
(
ret
->
s
,
s
)
==
NULL
)
{
ECDSA_SIG_free
(
ret
);
ret
=
NULL
;
reason
=
ERR_R_BN_LIB
;
}
err:
if
(
!
ret
)
{
ECDSAerr
(
ECDSA_F_ECDSA_DO_SIGN
,
reason
);
BN_free
(
r
);
BN_free
(
s
);
}
if
(
r
!=
NULL
)
BN_clear_free
(
r
);
if
(
s
!=
NULL
)
BN_clear_free
(
s
);
if
(
ctx
!=
NULL
)
BN_CTX_free
(
ctx
);
if
(
m
!=
NULL
)
BN_clear_free
(
m
);
if
(
tmp
!=
NULL
)
BN_clear_free
(
tmp
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录