Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
7999c65c
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看板
提交
7999c65c
编写于
2月 03, 2000
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Some 'const's for BNs.
上级
bfe30e4d
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
14 addition
and
13 deletion
+14
-13
crypto/bn/bn.h
crypto/bn/bn.h
+1
-1
crypto/bn/bn_prime.c
crypto/bn/bn_prime.c
+9
-8
crypto/bn/bn_word.c
crypto/bn/bn_word.c
+1
-1
doc/crypto/BN_add_word.pod
doc/crypto/BN_add_word.pod
+1
-1
doc/crypto/bn.pod
doc/crypto/bn.pod
+2
-2
未找到文件。
crypto/bn/bn.h
浏览文件 @
7999c65c
...
...
@@ -356,7 +356,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
BN_CTX
*
ctx
);
int
BN_mul
(
BIGNUM
*
r
,
BIGNUM
*
a
,
BIGNUM
*
b
,
BN_CTX
*
ctx
);
int
BN_sqr
(
BIGNUM
*
r
,
BIGNUM
*
a
,
BN_CTX
*
ctx
);
BN_ULONG
BN_mod_word
(
BIGNUM
*
a
,
BN_ULONG
w
);
BN_ULONG
BN_mod_word
(
const
BIGNUM
*
a
,
BN_ULONG
w
);
BN_ULONG
BN_div_word
(
BIGNUM
*
a
,
BN_ULONG
w
);
int
BN_mul_word
(
BIGNUM
*
a
,
BN_ULONG
w
);
int
BN_add_word
(
BIGNUM
*
a
,
BN_ULONG
w
);
...
...
crypto/bn/bn_prime.c
浏览文件 @
7999c65c
...
...
@@ -121,8 +121,8 @@
*/
#include "bn_prime.h"
static
int
witness
(
BIGNUM
*
w
,
BIGNUM
*
a
,
BIGNUM
*
a1
,
BIGNUM
*
a1_odd
,
int
k
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
mont
);
static
int
witness
(
BIGNUM
*
w
,
const
BIGNUM
*
a
,
const
BIGNUM
*
a1
,
const
BIGNUM
*
a1_odd
,
int
k
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
mont
);
static
int
probable_prime
(
BIGNUM
*
rnd
,
int
bits
);
static
int
probable_prime_dh
(
BIGNUM
*
rnd
,
int
bits
,
BIGNUM
*
add
,
BIGNUM
*
rem
,
BN_CTX
*
ctx
);
...
...
@@ -223,7 +223,7 @@ int BN_is_prime_fasttest(const BIGNUM *a, int checks,
BN_CTX
*
ctx
=
NULL
;
BIGNUM
*
A1
,
*
A1_odd
,
*
check
;
/* taken from ctx */
BN_MONT_CTX
*
mont
=
NULL
;
BIGNUM
*
A
;
const
BIGNUM
*
A
;
if
(
checks
==
BN_prime_checks
)
checks
=
BN_prime_checks_for_size
(
BN_num_bits
(
a
));
...
...
@@ -247,9 +247,10 @@ int BN_is_prime_fasttest(const BIGNUM *a, int checks,
/* A := abs(a) */
if
(
a
->
neg
)
{
A
=
&
(
ctx
->
bn
[
ctx
->
tos
++
]);
BN_copy
(
A
,
a
);
A
->
neg
=
0
;
BIGNUM
*
t
=
&
(
ctx
->
bn
[
ctx
->
tos
++
]);
BN_copy
(
t
,
a
);
t
->
neg
=
0
;
A
=
t
;
}
else
A
=
a
;
...
...
@@ -318,8 +319,8 @@ err:
return
(
ret
);
}
static
int
witness
(
BIGNUM
*
w
,
BIGNUM
*
a
,
BIGNUM
*
a1
,
BIGNUM
*
a1_odd
,
int
k
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
mont
)
static
int
witness
(
BIGNUM
*
w
,
const
BIGNUM
*
a
,
const
BIGNUM
*
a1
,
const
BIGNUM
*
a1_odd
,
int
k
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
mont
)
{
if
(
!
BN_mod_exp_mont
(
w
,
w
,
a1_odd
,
a
,
ctx
,
mont
))
/* w := w^a1_odd mod a */
return
-
1
;
...
...
crypto/bn/bn_word.c
浏览文件 @
7999c65c
...
...
@@ -60,7 +60,7 @@
#include "cryptlib.h"
#include "bn_lcl.h"
BN_ULONG
BN_mod_word
(
BIGNUM
*
a
,
BN_ULONG
w
)
BN_ULONG
BN_mod_word
(
const
BIGNUM
*
a
,
BN_ULONG
w
)
{
#ifndef BN_LLONG
BN_ULONG
ret
=
0
;
...
...
doc/crypto/BN_add_word.pod
浏览文件 @
7999c65c
...
...
@@ -17,7 +17,7 @@ functions on BIGNUMs with integers
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w);
BN_ULONG BN_mod_word(BIGNUM *a, BN_ULONG w);
BN_ULONG BN_mod_word(
const
BIGNUM *a, BN_ULONG w);
=head1 DESCRIPTION
...
...
doc/crypto/bn.pod
浏览文件 @
7999c65c
...
...
@@ -43,7 +43,7 @@ bn - Multiprecision integer arithmetics
int BN_sub_word(BIGNUM *a, BN_ULONG w);
int BN_mul_word(BIGNUM *a, BN_ULONG w);
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w);
BN_ULONG BN_mod_word(BIGNUM *a, BN_ULONG w);
BN_ULONG BN_mod_word(
const
BIGNUM *a, BN_ULONG w);
int BN_cmp(BIGNUM *a, BIGNUM *b);
int BN_ucmp(BIGNUM *a, BIGNUM *b);
...
...
@@ -63,7 +63,7 @@ bn - Multiprecision integer arithmetics
BIGNUM *BN_generate_prime(BIGNUM *ret,int bits,int safe,BIGNUM *add,
BIGNUM *rem,void (*callback)(int,int,void *),void *cb_arg);
int BN_is_prime(BIGNUM *p,int nchecks,void (*callback)(int,int,void *),
int BN_is_prime(
const
BIGNUM *p,int nchecks,void (*callback)(int,int,void *),
BN_CTX *ctx,void *cb_arg);
int BN_set_bit(BIGNUM *a, int n);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录