Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2819ffb5
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看板
提交
2819ffb5
编写于
4月 01, 2008
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix fast reduction on NIST curves (as well BN_NIST_ADD_ONE macro).
PR: 1593
上级
964c7e8f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
52 addition
and
96 deletion
+52
-96
crypto/bn/bn_nist.c
crypto/bn/bn_nist.c
+52
-96
未找到文件。
crypto/bn/bn_nist.c
浏览文件 @
2819ffb5
...
@@ -182,7 +182,7 @@ static int _is_set_384_data = 0;
...
@@ -182,7 +182,7 @@ static int _is_set_384_data = 0;
static
void
_init_384_data
(
void
);
static
void
_init_384_data
(
void
);
#endif
#endif
#define BN_NIST_ADD_ONE(a) while (!(
++(*(a))
)) ++(a);
#define BN_NIST_ADD_ONE(a) while (!(
*(a)=(*(a)+1)&BN_MASK2
)) ++(a);
static
void
nist_cp_bn_0
(
BN_ULONG
*
buf
,
BN_ULONG
*
a
,
int
top
,
int
max
)
static
void
nist_cp_bn_0
(
BN_ULONG
*
buf
,
BN_ULONG
*
a
,
int
top
,
int
max
)
{
{
...
@@ -255,7 +255,6 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -255,7 +255,6 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
BN_CTX
*
ctx
)
BN_CTX
*
ctx
)
{
{
int
top
=
a
->
top
,
i
;
int
top
=
a
->
top
,
i
;
BN_ULONG
carry
=
0
;
register
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
register
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
BN_ULONG
t_d
[
BN_NIST_192_TOP
],
BN_ULONG
t_d
[
BN_NIST_192_TOP
],
buf
[
BN_NIST_192_TOP
];
buf
[
BN_NIST_192_TOP
];
...
@@ -291,11 +290,11 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -291,11 +290,11 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
nist_set_192
(
t_d
,
buf
,
0
,
3
,
3
);
nist_set_192
(
t_d
,
buf
,
0
,
3
,
3
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
++
carry
;
bn_sub_words
(
r_d
,
r_d
,
_nist_p_192
,
BN_NIST_192_TOP
)
;
nist_set_192
(
t_d
,
buf
,
4
,
4
,
0
);
nist_set_192
(
t_d
,
buf
,
4
,
4
,
0
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
++
carry
;
bn_sub_words
(
r_d
,
r_d
,
_nist_p_192
,
BN_NIST_192_TOP
)
;
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
# pragma message restore
# pragma message restore
...
@@ -303,13 +302,8 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -303,13 +302,8 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
nist_set_192
(
t_d
,
buf
,
5
,
5
,
5
)
nist_set_192
(
t_d
,
buf
,
5
,
5
,
5
)
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_192_TOP
))
++
carry
;
bn_sub_words
(
r_d
,
r_d
,
_nist_p_192
,
BN_NIST_192_TOP
)
;
while
(
carry
)
{
if
(
bn_sub_words
(
r_d
,
r_d
,
_nist_p_192
,
BN_NIST_192_TOP
))
--
carry
;
}
r
->
top
=
BN_NIST_192_TOP
;
r
->
top
=
BN_NIST_192_TOP
;
bn_correct_top
(
r
);
bn_correct_top
(
r
);
if
(
BN_ucmp
(
r
,
field
)
>=
0
)
if
(
BN_ucmp
(
r
,
field
)
>=
0
)
...
@@ -336,9 +330,8 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -336,9 +330,8 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
int
BN_nist_mod_224
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
int
BN_nist_mod_224
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
BN_CTX
*
ctx
)
BN_CTX
*
ctx
)
{
{
#if BN_BITS2
!= 64
#if BN_BITS2
== 32
int
top
=
a
->
top
,
i
;
int
top
=
a
->
top
,
i
;
int
carry
=
0
;
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
BN_ULONG
t_d
[
BN_NIST_224_TOP
],
BN_ULONG
t_d
[
BN_NIST_224_TOP
],
buf
[
BN_NIST_224_TOP
];
buf
[
BN_NIST_224_TOP
];
...
@@ -369,29 +362,16 @@ int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -369,29 +362,16 @@ int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
nist_set_224
(
t_d
,
buf
,
10
,
9
,
8
,
7
,
0
,
0
,
0
);
nist_set_224
(
t_d
,
buf
,
10
,
9
,
8
,
7
,
0
,
0
,
0
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
++
carry
;
bn_sub_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
)
;
nist_set_224
(
t_d
,
buf
,
0
,
13
,
12
,
11
,
0
,
0
,
0
);
nist_set_224
(
t_d
,
buf
,
0
,
13
,
12
,
11
,
0
,
0
,
0
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
++
carry
;
bn_sub_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
)
;
nist_set_224
(
t_d
,
buf
,
13
,
12
,
11
,
10
,
9
,
8
,
7
);
nist_set_224
(
t_d
,
buf
,
13
,
12
,
11
,
10
,
9
,
8
,
7
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
--
carry
;
bn_add_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
)
;
nist_set_224
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
13
,
12
,
11
);
nist_set_224
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
13
,
12
,
11
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_224_TOP
))
--
carry
;
bn_add_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
);
if
(
carry
>
0
)
while
(
carry
)
{
if
(
bn_sub_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
))
--
carry
;
}
else
if
(
carry
<
0
)
while
(
carry
)
{
if
(
bn_add_words
(
r_d
,
r_d
,
_nist_p_224
,
BN_NIST_224_TOP
))
++
carry
;
}
r
->
top
=
BN_NIST_224_TOP
;
r
->
top
=
BN_NIST_224_TOP
;
bn_correct_top
(
r
);
bn_correct_top
(
r
);
...
@@ -407,7 +387,7 @@ int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -407,7 +387,7 @@ int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
#endif
#endif
}
}
#if BN_BITS2
!= 64
#if BN_BITS2
== 32
static
void
_init_256_data
(
void
)
static
void
_init_256_data
(
void
)
{
{
int
i
;
int
i
;
...
@@ -442,7 +422,7 @@ static void _init_256_data(void)
...
@@ -442,7 +422,7 @@ static void _init_256_data(void)
int
BN_nist_mod_256
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
int
BN_nist_mod_256
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
BN_CTX
*
ctx
)
BN_CTX
*
ctx
)
{
{
#if BN_BITS2
!= 64
#if BN_BITS2
== 32
int
i
,
top
=
a
->
top
;
int
i
,
top
=
a
->
top
;
int
carry
=
0
;
int
carry
=
0
;
register
BN_ULONG
*
a_d
=
a
->
d
,
*
r_d
;
register
BN_ULONG
*
a_d
=
a
->
d
,
*
r_d
;
...
@@ -488,8 +468,7 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -488,8 +468,7 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
nist_set_256
(
t_d
,
buf
,
15
,
14
,
13
,
12
,
11
,
0
,
0
,
0
);
nist_set_256
(
t_d
,
buf
,
15
,
14
,
13
,
12
,
11
,
0
,
0
,
0
);
/*S2*/
/*S2*/
nist_set_256
(
t_d2
,
buf
,
0
,
15
,
14
,
13
,
12
,
0
,
0
,
0
);
nist_set_256
(
t_d2
,
buf
,
0
,
15
,
14
,
13
,
12
,
0
,
0
,
0
);
if
(
bn_add_words
(
t_d
,
t_d
,
t_d2
,
BN_NIST_256_TOP
))
carry
=
bn_add_words
(
t_d
,
t_d
,
t_d2
,
BN_NIST_256_TOP
);
carry
=
2
;
/* left shift */
/* left shift */
{
{
register
BN_ULONG
*
ap
,
t
,
c
;
register
BN_ULONG
*
ap
,
t
,
c
;
...
@@ -501,49 +480,38 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -501,49 +480,38 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
*
(
ap
++
)
=
((
t
<<
1
)
|
c
)
&
BN_MASK2
;
*
(
ap
++
)
=
((
t
<<
1
)
|
c
)
&
BN_MASK2
;
c
=
(
t
&
BN_TBIT
)
?
1
:
0
;
c
=
(
t
&
BN_TBIT
)
?
1
:
0
;
}
}
if
(
c
)
carry
<<=
1
;
++
carry
;
carry
|=
c
;
}
}
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
++
carry
;
/*S3*/
/*S3*/
nist_set_256
(
t_d
,
buf
,
15
,
14
,
0
,
0
,
0
,
10
,
9
,
8
);
nist_set_256
(
t_d
,
buf
,
15
,
14
,
0
,
0
,
0
,
10
,
9
,
8
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
++
carry
;
/*S4*/
/*S4*/
nist_set_256
(
t_d
,
buf
,
8
,
13
,
15
,
14
,
13
,
11
,
10
,
9
);
nist_set_256
(
t_d
,
buf
,
8
,
13
,
15
,
14
,
13
,
11
,
10
,
9
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
++
carry
;
if
(
carry
)
bn_sub_words
(
r_d
,
r_d
,
_256_data
+
BN_NIST_256_TOP
*
(
carry
-
1
),
BN_NIST_256_TOP
);
/*D1*/
/*D1*/
nist_set_256
(
t_d
,
buf
,
10
,
8
,
0
,
0
,
0
,
13
,
12
,
11
);
nist_set_256
(
t_d
,
buf
,
10
,
8
,
0
,
0
,
0
,
13
,
12
,
11
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
--
carry
;
/*D2*/
/*D2*/
nist_set_256
(
t_d
,
buf
,
11
,
9
,
0
,
0
,
15
,
14
,
13
,
12
);
nist_set_256
(
t_d
,
buf
,
11
,
9
,
0
,
0
,
15
,
14
,
13
,
12
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
--
carry
;
/*D3*/
/*D3*/
nist_set_256
(
t_d
,
buf
,
12
,
0
,
10
,
9
,
8
,
15
,
14
,
13
);
nist_set_256
(
t_d
,
buf
,
12
,
0
,
10
,
9
,
8
,
15
,
14
,
13
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
--
carry
;
/*D4*/
/*D4*/
nist_set_256
(
t_d
,
buf
,
13
,
0
,
11
,
10
,
9
,
0
,
15
,
14
);
nist_set_256
(
t_d
,
buf
,
13
,
0
,
11
,
10
,
9
,
0
,
15
,
14
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
))
carry
+=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_256_TOP
);
--
carry
;
if
(
carry
)
if
(
carry
)
{
bn_add_words
(
r_d
,
r_d
,
_256_data
+
BN_NIST_256_TOP
*
if
(
carry
>
0
)
(
carry
-
1
),
BN_NIST_256_TOP
);
bn_sub_words
(
r_d
,
r_d
,
_256_data
+
BN_NIST_256_TOP
*
--
carry
,
BN_NIST_256_TOP
);
else
{
carry
=
-
carry
;
bn_add_words
(
r_d
,
r_d
,
_256_data
+
BN_NIST_256_TOP
*
--
carry
,
BN_NIST_256_TOP
);
}
}
r
->
top
=
BN_NIST_256_TOP
;
r
->
top
=
BN_NIST_256_TOP
;
bn_correct_top
(
r
);
bn_correct_top
(
r
);
...
@@ -559,7 +527,7 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -559,7 +527,7 @@ int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
#endif
#endif
}
}
#if BN_BITS2
!= 64
#if BN_BITS2
== 32
static
void
_init_384_data
(
void
)
static
void
_init_384_data
(
void
)
{
{
int
i
;
int
i
;
...
@@ -598,7 +566,7 @@ static void _init_384_data(void)
...
@@ -598,7 +566,7 @@ static void _init_384_data(void)
int
BN_nist_mod_384
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
int
BN_nist_mod_384
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
field
,
BN_CTX
*
ctx
)
BN_CTX
*
ctx
)
{
{
#if BN_BITS2
!= 64
#if BN_BITS2
== 32
int
i
,
top
=
a
->
top
;
int
i
,
top
=
a
->
top
;
int
carry
=
0
;
int
carry
=
0
;
register
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
register
BN_ULONG
*
r_d
,
*
a_d
=
a
->
d
;
...
@@ -646,61 +614,49 @@ int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -646,61 +614,49 @@ int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
register
BN_ULONG
*
ap
,
t
,
c
;
register
BN_ULONG
*
ap
,
t
,
c
;
ap
=
t_d
;
ap
=
t_d
;
c
=
0
;
c
=
0
;
for
(
i
=
BN_NIST_256_TOP
;
i
!=
0
;
--
i
)
for
(
i
=
3
;
i
!=
0
;
--
i
)
{
{
t
=
*
ap
;
t
=
*
ap
;
*
(
ap
++
)
=
((
t
<<
1
)
|
c
)
&
BN_MASK2
;
*
(
ap
++
)
=
((
t
<<
1
)
|
c
)
&
BN_MASK2
;
c
=
(
t
&
BN_TBIT
)
?
1
:
0
;
c
=
(
t
&
BN_TBIT
)
?
1
:
0
;
}
}
*
ap
=
c
;
}
}
if
(
bn_add_words
(
r_d
+
(
128
/
BN_BITS2
),
r_d
+
(
128
/
BN_BITS2
),
carry
=
bn_add_words
(
r_d
+
(
128
/
BN_BITS2
),
r_d
+
(
128
/
BN_BITS2
),
t_d
,
BN_NIST_256_TOP
))
t_d
,
BN_NIST_256_TOP
);
++
carry
;
/*S2 */
/*S2 */
if
(
bn_add_words
(
r_d
,
r_d
,
buf
,
BN_NIST_384_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
buf
,
BN_NIST_384_TOP
);
++
carry
;
/*S3*/
/*S3*/
nist_set_384
(
t_d
,
buf
,
20
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
23
,
22
,
21
);
nist_set_384
(
t_d
,
buf
,
20
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
23
,
22
,
21
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
++
carry
;
/*S4*/
/*S4*/
nist_set_384
(
t_d
,
buf
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
20
,
0
,
23
,
0
);
nist_set_384
(
t_d
,
buf
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
20
,
0
,
23
,
0
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
++
carry
;
/*S5*/
/*S5*/
nist_set_256
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
23
-
4
,
22
-
4
,
21
-
4
,
20
-
4
);
nist_set_256
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
23
-
4
,
22
-
4
,
21
-
4
,
20
-
4
);
if
(
bn_add_words
(
r_d
+
(
128
/
BN_BITS2
),
r_d
+
(
128
/
BN_BITS2
),
carry
+=
bn_add_words
(
r_d
+
(
128
/
BN_BITS2
),
r_d
+
(
128
/
BN_BITS2
),
t_d
,
BN_NIST_256_TOP
))
t_d
,
BN_NIST_256_TOP
);
++
carry
;
/*S6*/
/*S6*/
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
22
,
21
,
0
,
0
,
20
);
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
22
,
21
,
0
,
0
,
20
);
if
(
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
+=
bn_add_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
++
carry
;
if
(
carry
)
bn_sub_words
(
r_d
,
r_d
,
_384_data
+
BN_NIST_384_TOP
*
(
carry
-
1
),
BN_NIST_384_TOP
);
/*D1*/
/*D1*/
nist_set_384
(
t_d
,
buf
,
22
,
21
,
20
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
23
);
nist_set_384
(
t_d
,
buf
,
22
,
21
,
20
,
19
,
18
,
17
,
16
,
15
,
14
,
13
,
12
,
23
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
--
carry
;
/*D2*/
/*D2*/
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
22
,
21
,
20
,
0
);
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
22
,
21
,
20
,
0
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
+=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
--
carry
;
/*D3*/
/*D3*/
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
23
,
0
,
0
,
0
);
nist_set_384
(
t_d
,
buf
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
23
,
23
,
0
,
0
,
0
);
if
(
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
))
carry
+=
bn_sub_words
(
r_d
,
r_d
,
t_d
,
BN_NIST_384_TOP
);
--
carry
;
if
(
carry
)
if
(
carry
)
{
bn_add_words
(
r_d
,
r_d
,
_384_data
+
BN_NIST_384_TOP
*
if
(
carry
>
0
)
(
carry
-
1
),
BN_NIST_384_TOP
);
bn_sub_words
(
r_d
,
r_d
,
_384_data
+
BN_NIST_384_TOP
*
--
carry
,
BN_NIST_384_TOP
);
else
{
carry
=
-
carry
;
bn_add_words
(
r_d
,
r_d
,
_384_data
+
BN_NIST_384_TOP
*
--
carry
,
BN_NIST_384_TOP
);
}
}
r
->
top
=
BN_NIST_384_TOP
;
r
->
top
=
BN_NIST_384_TOP
;
bn_correct_top
(
r
);
bn_correct_top
(
r
);
...
@@ -762,7 +718,7 @@ int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
...
@@ -762,7 +718,7 @@ int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
(
r_d
[
BN_NIST_521_TOP
-
1
]
&
~
(
BN_NIST_521_TOP_MASK
)))
(
r_d
[
BN_NIST_521_TOP
-
1
]
&
~
(
BN_NIST_521_TOP_MASK
)))
{
{
BN_NIST_ADD_ONE
(
r_d
)
BN_NIST_ADD_ONE
(
r_d
)
r
_
d
[
BN_NIST_521_TOP
-
1
]
&=
BN_NIST_521_TOP_MASK
;
r
->
d
[
BN_NIST_521_TOP
-
1
]
&=
BN_NIST_521_TOP_MASK
;
}
}
bn_correct_top
(
r
);
bn_correct_top
(
r
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录