Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
879bd6e3
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看板
提交
879bd6e3
编写于
1月 26, 2011
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Internal version of BN_mod_inverse allowing checking of no-inverse without
need to inspect error queue.
上级
6f1a3a31
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
5 deletion
+23
-5
crypto/bn/bn_blind.c
crypto/bn/bn_blind.c
+3
-4
crypto/bn/bn_gcd.c
crypto/bn/bn_gcd.c
+17
-1
crypto/bn/bn_lcl.h
crypto/bn/bn_lcl.h
+3
-0
未找到文件。
crypto/bn/bn_blind.c
浏览文件 @
879bd6e3
...
...
@@ -331,12 +331,12 @@ BN_BLINDING *BN_BLINDING_create_param(BN_BLINDING *b,
ret
->
m_ctx
=
m_ctx
;
do
{
int
rv
;
if
(
!
BN_rand_range
(
ret
->
A
,
ret
->
mod
))
goto
err
;
if
(
BN_mod_inverse
(
ret
->
Ai
,
ret
->
A
,
ret
->
mod
,
ctx
)
==
NULL
)
if
(
!
int_bn_mod_inverse
(
ret
->
Ai
,
ret
->
A
,
ret
->
mod
,
ctx
,
&
rv
)
)
{
/* this should almost never happen for good RSA keys */
unsigned
long
error
=
ERR_peek_last_error
();
if
(
ERR_GET_REASON
(
error
)
==
BN_R_NO_INVERSE
)
if
(
rv
)
{
if
(
retry_counter
--
==
0
)
{
...
...
@@ -344,7 +344,6 @@ BN_BLINDING *BN_BLINDING_create_param(BN_BLINDING *b,
BN_R_TOO_MANY_ITERATIONS
);
goto
err
;
}
ERR_clear_error
();
}
else
goto
err
;
...
...
crypto/bn/bn_gcd.c
浏览文件 @
879bd6e3
...
...
@@ -205,13 +205,28 @@ err:
/* solves ax == 1 (mod n) */
static
BIGNUM
*
BN_mod_inverse_no_branch
(
BIGNUM
*
in
,
const
BIGNUM
*
a
,
const
BIGNUM
*
n
,
BN_CTX
*
ctx
);
BIGNUM
*
BN_mod_inverse
(
BIGNUM
*
in
,
const
BIGNUM
*
a
,
const
BIGNUM
*
n
,
BN_CTX
*
ctx
)
{
BIGNUM
*
rv
;
int
noinv
;
rv
=
int_bn_mod_inverse
(
in
,
a
,
n
,
ctx
,
&
noinv
);
if
(
noinv
)
BNerr
(
BN_F_BN_MOD_INVERSE
,
BN_R_NO_INVERSE
);
return
rv
;
}
BIGNUM
*
int_bn_mod_inverse
(
BIGNUM
*
in
,
const
BIGNUM
*
a
,
const
BIGNUM
*
n
,
BN_CTX
*
ctx
,
int
*
pnoinv
)
{
BIGNUM
*
A
,
*
B
,
*
X
,
*
Y
,
*
M
,
*
D
,
*
T
,
*
R
=
NULL
;
BIGNUM
*
ret
=
NULL
;
int
sign
;
if
(
pnoinv
)
*
pnoinv
=
0
;
if
((
BN_get_flags
(
a
,
BN_FLG_CONSTTIME
)
!=
0
)
||
(
BN_get_flags
(
n
,
BN_FLG_CONSTTIME
)
!=
0
))
{
return
BN_mod_inverse_no_branch
(
in
,
a
,
n
,
ctx
);
...
...
@@ -488,7 +503,8 @@ BIGNUM *BN_mod_inverse(BIGNUM *in,
}
else
{
BNerr
(
BN_F_BN_MOD_INVERSE
,
BN_R_NO_INVERSE
);
if
(
pnoinv
)
*
pnoinv
=
1
;
goto
err
;
}
ret
=
R
;
...
...
crypto/bn/bn_lcl.h
浏览文件 @
879bd6e3
...
...
@@ -497,6 +497,9 @@ BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
int
cl
,
int
dl
);
int
bn_mul_mont
(
BN_ULONG
*
rp
,
const
BN_ULONG
*
ap
,
const
BN_ULONG
*
bp
,
const
BN_ULONG
*
np
,
const
BN_ULONG
*
n0
,
int
num
);
BIGNUM
*
int_bn_mod_inverse
(
BIGNUM
*
in
,
const
BIGNUM
*
a
,
const
BIGNUM
*
n
,
BN_CTX
*
ctx
,
int
*
noinv
);
#ifdef __cplusplus
}
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录