Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
eb1f1b0a
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,发现更多精彩内容 >>
提交
eb1f1b0a
编写于
11月 29, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix BN_kronecker so that it works correctly if 'a' is negative
(we need the two's complement of BN_lsw then).
上级
a9376dbf
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
4 addition
and
4 deletion
+4
-4
crypto/bn/bn_kron.c
crypto/bn/bn_kron.c
+2
-2
crypto/bn/bntest.c
crypto/bn/bntest.c
+2
-2
未找到文件。
crypto/bn/bn_kron.c
浏览文件 @
eb1f1b0a
...
@@ -65,7 +65,7 @@
...
@@ -65,7 +65,7 @@
int
BN_kronecker
(
const
BIGNUM
*
a
,
const
BIGNUM
*
b
,
BN_CTX
*
ctx
)
int
BN_kronecker
(
const
BIGNUM
*
a
,
const
BIGNUM
*
b
,
BN_CTX
*
ctx
)
{
{
int
i
;
int
i
;
int
ret
;
int
ret
=
-
2
;
/* avoid 'uninitialized' warning */
int
err
=
0
;
int
err
=
0
;
BIGNUM
*
A
,
*
B
,
*
tmp
;
BIGNUM
*
A
,
*
B
,
*
tmp
;
/* In 'tab', only odd-indexed entries are relevant:
/* In 'tab', only odd-indexed entries are relevant:
...
@@ -165,7 +165,7 @@ int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
...
@@ -165,7 +165,7 @@ int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
/* Cohen's step 4: */
/* Cohen's step 4: */
/* multiply 'ret' by $(-1)^{(A-1)(B-1)/4}$ */
/* multiply 'ret' by $(-1)^{(A-1)(B-1)/4}$ */
if
(
BN_lsw
(
A
)
&
BN_lsw
(
B
)
&
2
)
if
(
(
A
->
neg
?
~
BN_lsw
(
A
)
:
BN_lsw
(
A
)
)
&
BN_lsw
(
B
)
&
2
)
ret
=
-
ret
;
ret
=
-
ret
;
/* (A, B) := (B mod |A|, |A|) */
/* (A, B) := (B mod |A|, |A|) */
...
...
crypto/bn/bntest.c
浏览文件 @
eb1f1b0a
...
@@ -949,7 +949,7 @@ int test_kron(BIO *bp, BN_CTX *ctx)
...
@@ -949,7 +949,7 @@ int test_kron(BIO *bp, BN_CTX *ctx)
for
(
i
=
0
;
i
<
num0
;
i
++
)
for
(
i
=
0
;
i
<
num0
;
i
++
)
{
{
if
(
!
BN_rand
(
a
,
512
,
0
,
0
))
goto
err
;
if
(
!
BN_rand
(
a
,
512
,
0
,
0
))
goto
err
;
if
(
!
BN_nnmod
(
a
,
a
,
b
,
ctx
))
goto
err
;
a
->
neg
=
rand_neg
()
;
/* r := (b-1)/2 (note that b is odd) */
/* r := (b-1)/2 (note that b is odd) */
if
(
!
BN_copy
(
r
,
b
))
goto
err
;
if
(
!
BN_copy
(
r
,
b
))
goto
err
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录