Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2c52ac9b
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,发现更多精彩内容 >>
提交
2c52ac9b
编写于
1月 13, 2016
作者:
R
Rich Salz
提交者:
Rich Salz
1月 13, 2016
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Call single parent free_comp routine.
Reviewed-by:
N
Viktor Dukhovni
<
viktor@openssl.org
>
上级
9aa00b18
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
10 addition
and
12 deletion
+10
-12
crypto/ec/ec_lcl.h
crypto/ec/ec_lcl.h
+2
-0
crypto/ec/ec_lib.c
crypto/ec/ec_lib.c
+3
-3
crypto/ec/ec_mult.c
crypto/ec/ec_mult.c
+1
-1
crypto/ec/ecp_nistp224.c
crypto/ec/ecp_nistp224.c
+1
-2
crypto/ec/ecp_nistp256.c
crypto/ec/ecp_nistp256.c
+1
-2
crypto/ec/ecp_nistp521.c
crypto/ec/ecp_nistp521.c
+1
-2
crypto/ec/ecp_nistz256.c
crypto/ec/ecp_nistz256.c
+1
-2
未找到文件。
crypto/ec/ec_lcl.h
浏览文件 @
2c52ac9b
...
...
@@ -308,6 +308,8 @@ NISTP521_PRE_COMP *EC_nistp521_pre_comp_dup(NISTP521_PRE_COMP *);
NISTZ256_PRE_COMP
*
EC_nistz256_pre_comp_dup
(
NISTZ256_PRE_COMP
*
);
NISTP256_PRE_COMP
*
EC_nistp256_pre_comp_dup
(
NISTP256_PRE_COMP
*
);
EC_PRE_COMP
*
EC_ec_pre_comp_dup
(
EC_PRE_COMP
*
);
void
EC_pre_comp_free
(
EC_GROUP
*
group
);
void
EC_nistp224_pre_comp_free
(
NISTP224_PRE_COMP
*
);
void
EC_nistp256_pre_comp_free
(
NISTP256_PRE_COMP
*
);
void
EC_nistp521_pre_comp_free
(
NISTP521_PRE_COMP
*
);
...
...
crypto/ec/ec_lib.c
浏览文件 @
2c52ac9b
...
...
@@ -109,7 +109,7 @@ EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
return
NULL
;
}
static
void
ec_group_free_precomp
(
EC_GROUP
*
group
)
void
EC_pre_comp_free
(
EC_GROUP
*
group
)
{
switch
(
group
->
pre_comp_type
)
{
default:
...
...
@@ -145,7 +145,7 @@ void EC_GROUP_free(EC_GROUP *group)
if
(
group
->
meth
->
group_finish
!=
0
)
group
->
meth
->
group_finish
(
group
);
ec_group_free_precomp
(
group
);
EC_pre_comp_free
(
group
);
BN_MONT_CTX_free
(
group
->
mont_data
);
EC_POINT_free
(
group
->
generator
);
BN_free
(
group
->
order
);
...
...
@@ -164,7 +164,7 @@ void EC_GROUP_clear_free(EC_GROUP *group)
else
if
(
group
->
meth
->
group_finish
!=
0
)
group
->
meth
->
group_finish
(
group
);
ec_group_free_precomp
(
group
);
EC_pre_comp_free
(
group
);
BN_MONT_CTX_free
(
group
->
mont_data
);
EC_POINT_clear_free
(
group
->
generator
);
BN_clear_free
(
group
->
order
);
...
...
crypto/ec/ec_mult.c
浏览文件 @
2c52ac9b
...
...
@@ -562,7 +562,7 @@ int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
int
ret
=
0
;
/* if there is an old EC_PRE_COMP object, throw it away */
EC_
ec_pre_comp_free
(
group
->
pre_comp
.
ec
);
EC_
pre_comp_free
(
group
);
if
((
pre_comp
=
ec_pre_comp_new
(
group
))
==
NULL
)
return
0
;
...
...
crypto/ec/ecp_nistp224.c
浏览文件 @
2c52ac9b
...
...
@@ -1559,8 +1559,7 @@ int ec_GFp_nistp224_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem
tmp_felems
[
32
];
/* throw away old precomputation */
EC_nistp224_pre_comp_free
(
group
->
pre_comp
.
nistp224
);
group
->
pre_comp
.
nistp224
=
NULL
;
EC_pre_comp_free
(
group
);
if
(
ctx
==
NULL
)
if
((
ctx
=
new_ctx
=
BN_CTX_new
())
==
NULL
)
return
0
;
...
...
crypto/ec/ecp_nistp256.c
浏览文件 @
2c52ac9b
...
...
@@ -2184,8 +2184,7 @@ int ec_GFp_nistp256_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem
x_tmp
,
y_tmp
,
z_tmp
;
/* throw away old precomputation */
EC_nistp256_pre_comp_free
(
group
->
pre_comp
.
nistp256
);
group
->
pre_comp
.
nistp256
=
NULL
;
EC_pre_comp_free
(
group
);
if
(
ctx
==
NULL
)
if
((
ctx
=
new_ctx
=
BN_CTX_new
())
==
NULL
)
return
0
;
...
...
crypto/ec/ecp_nistp521.c
浏览文件 @
2c52ac9b
...
...
@@ -2008,8 +2008,7 @@ int ec_GFp_nistp521_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem
tmp_felems
[
16
];
/* throw away old precomputation */
EC_nistp521_pre_comp_free
(
group
->
pre_comp
.
nistp521
);
group
->
pre_comp
.
nistp521
=
NULL
;
EC_pre_comp_free
(
group
);
if
(
ctx
==
NULL
)
if
((
ctx
=
new_ctx
=
BN_CTX_new
())
==
NULL
)
return
0
;
...
...
crypto/ec/ecp_nistz256.c
浏览文件 @
2c52ac9b
...
...
@@ -769,8 +769,7 @@ __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx)
unsigned
char
*
precomp_storage
=
NULL
;
/* if there is an old NISTZ256_PRE_COMP object, throw it away */
EC_nistz256_pre_comp_free
(
group
->
pre_comp
.
nistz256
);
group
->
pre_comp
.
nistz256
=
NULL
;
EC_pre_comp_free
(
group
);
generator
=
EC_GROUP_get0_generator
(
group
);
if
(
generator
==
NULL
)
{
ECerr
(
EC_F_ECP_NISTZ256_MULT_PRECOMPUTE
,
EC_R_UNDEFINED_GENERATOR
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录