Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
01e62900
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
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看板
提交
01e62900
编写于
11月 29, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
BN_legendre is no longer needed now that OpenSSL has BN_kronecker.
上级
d50f1bdf
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
2 addition
and
65 deletion
+2
-65
crypto/bn/bn_modfs.c
crypto/bn/bn_modfs.c
+2
-63
crypto/bn/bn_modfs.h
crypto/bn/bn_modfs.h
+0
-2
未找到文件。
crypto/bn/bn_modfs.c
浏览文件 @
01e62900
...
@@ -19,67 +19,6 @@
...
@@ -19,67 +19,6 @@
#define MAX_ROUNDS 10
#define MAX_ROUNDS 10
int
BN_legendre
(
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
)
{
BIGNUM
*
x
,
*
y
,
*
y2
;
BN_ULONG
m
;
int
L
;
assert
(
a
!=
NULL
&&
p
!=
NULL
&&
ctx
!=
NULL
);
BN_CTX_start
(
ctx
);
x
=
BN_CTX_get
(
ctx
);
y
=
BN_CTX_get
(
ctx
);
y2
=
BN_CTX_get
(
ctx
);
if
(
y2
==
NULL
)
goto
err
;
if
(
!
BN_nnmod
(
x
,
a
,
p
,
ctx
))
goto
err
;
if
(
BN_is_zero
(
x
))
{
BN_CTX_end
(
ctx
);
return
0
;
}
if
(
BN_copy
(
y
,
p
)
==
NULL
)
goto
err
;
L
=
1
;
while
(
1
)
{
if
(
!
BN_rshift1
(
y2
,
y
))
goto
err
;
if
(
BN_cmp
(
x
,
y2
)
>
0
)
{
if
(
!
BN_sub
(
x
,
y
,
x
))
goto
err
;
if
(
BN_mod_word
(
y
,
4
)
==
3
)
L
=
-
L
;
}
while
(
BN_mod_word
(
x
,
4
)
==
0
)
BN_div_word
(
x
,
4
);
if
(
BN_mod_word
(
x
,
2
)
==
0
)
{
BN_div_word
(
x
,
2
);
m
=
BN_mod_word
(
y
,
8
);
if
(
m
==
3
||
m
==
5
)
L
=
-
L
;
}
if
(
BN_is_one
(
x
))
{
BN_CTX_end
(
ctx
);
return
L
;
}
if
(
BN_mod_word
(
x
,
4
)
==
3
&&
BN_mod_word
(
y
,
4
)
==
3
)
L
=
-
L
;
BN_swap
(
x
,
y
);
if
(
!
BN_nnmod
(
x
,
x
,
y
,
ctx
))
goto
err
;
}
err:
BN_CTX_end
(
ctx
);
return
-
2
;
}
int
BN_mod_sqrt
(
BIGNUM
*
x
,
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
)
int
BN_mod_sqrt
(
BIGNUM
*
x
,
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
)
/* x^2 = a (mod p) */
/* x^2 = a (mod p) */
{
{
...
@@ -90,7 +29,7 @@ int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx)
...
@@ -90,7 +29,7 @@ int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx)
assert
(
x
!=
NULL
&&
a
!=
NULL
&&
p
!=
NULL
&&
ctx
!=
NULL
);
assert
(
x
!=
NULL
&&
a
!=
NULL
&&
p
!=
NULL
&&
ctx
!=
NULL
);
assert
(
BN_cmp
(
a
,
p
)
<
0
);
assert
(
BN_cmp
(
a
,
p
)
<
0
);
ret
=
BN_
legendre
(
a
,
p
,
ctx
);
ret
=
BN_
kronecker
(
a
,
p
,
ctx
);
if
(
ret
<
0
||
ret
>
1
)
return
0
;
if
(
ret
<
0
||
ret
>
1
)
return
0
;
if
(
ret
==
0
)
if
(
ret
==
0
)
{
{
...
@@ -120,7 +59,7 @@ int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx)
...
@@ -120,7 +59,7 @@ int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx)
{
{
if
(
max
++
>
MAX_ROUNDS
)
goto
err
;
/* if p is not prime could never stop*/
if
(
max
++
>
MAX_ROUNDS
)
goto
err
;
/* if p is not prime could never stop*/
if
(
!
BN_add_word
(
m
,
1
))
goto
err
;
if
(
!
BN_add_word
(
m
,
1
))
goto
err
;
ret
=
BN_
legendre
(
m
,
p
,
ctx
);
ret
=
BN_
kronecker
(
m
,
p
,
ctx
);
if
(
ret
<
-
1
||
ret
>
1
)
goto
err
;
if
(
ret
<
-
1
||
ret
>
1
)
goto
err
;
}
}
while
(
ret
!=
-
1
);
while
(
ret
!=
-
1
);
...
...
crypto/bn/bn_modfs.h
浏览文件 @
01e62900
...
@@ -15,8 +15,6 @@
...
@@ -15,8 +15,6 @@
#include <openssl/bn.h>
#include <openssl/bn.h>
int
BN_legendre
(
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
);
int
BN_mod_sqrt
(
BIGNUM
*
x
,
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
);
int
BN_mod_sqrt
(
BIGNUM
*
x
,
BIGNUM
*
a
,
BIGNUM
*
p
,
BN_CTX
*
ctx
);
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录