Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
df94f187
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看板
提交
df94f187
编写于
10月 14, 2005
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix bug in SMALL_FOOTPRINT path and clarify comment.
上级
b92c0df8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
4 deletion
+8
-4
crypto/bn/bn_asm.c
crypto/bn/bn_asm.c
+8
-4
未找到文件。
crypto/bn/bn_asm.c
浏览文件 @
df94f187
...
...
@@ -835,8 +835,12 @@ void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a)
* observed to give 40% faster rsa1024 private key operations and 10%
* faster rsa4096 ones, while on AMD64 it improves rsa1024 sign only
* by 10% and *worsens* rsa4096 sign by 15%. Once again, it's a
* reference implementation, one to be used as start-point for
* platform-specific assembler.
* reference implementation, one to be used as starting point for
* platform-specific assembler. Mentioned numbers apply to compiler
* generated code compiled with and without -DOPENSSL_BN_ASM_MONT and
* can vary not only from platform to platform, but even for compiler
* versions. Assembler vs. assembler improvement coefficients can
* [and are known to] differ and are to be documented elsewhere.
*/
int
bn_mul_mont
(
BN_ULONG
*
rp
,
const
BN_ULONG
*
ap
,
const
BN_ULONG
*
bp
,
const
BN_ULONG
*
np
,
BN_ULONG
n0
,
int
num
)
{
...
...
@@ -963,12 +967,12 @@ int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_U
for
(
i
=
0
;
i
<
num
;
i
++
)
{
c0
=
bn_mul_add_words
(
tp
,
ap
,
num
,
bp
[
i
]);
c1
=
tp
[
num
]
+
c0
;
c1
=
(
tp
[
num
]
+
c0
)
&
BN_MASK2
;
tp
[
num
]
=
c1
;
tp
[
num
+
1
]
=
(
c1
<
c0
?
1
:
0
);
c0
=
bn_mul_add_words
(
tp
,
np
,
num
,
tp
[
0
]
*
n0
);
c1
=
tp
[
num
]
+
c0
;
c1
=
(
tp
[
num
]
+
c0
)
&
BN_MASK2
;
tp
[
num
]
=
c1
;
tp
[
num
+
1
]
+=
(
c1
<
c0
?
1
:
0
);
for
(
j
=
0
;
j
<=
num
;
j
++
)
tp
[
j
]
=
tp
[
j
+
1
];
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录