Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
8927c278
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看板
提交
8927c278
编写于
5月 27, 2014
作者:
F
Felix Laurie von Massenbach
提交者:
Ben Laurie
6月 01, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add a test to check we're really generating probable primes.
上级
9a3a9974
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
2 deletion
+40
-2
crypto/bn/bn_prime.c
crypto/bn/bn_prime.c
+2
-2
crypto/bn/bntest.c
crypto/bn/bntest.c
+38
-0
未找到文件。
crypto/bn/bn_prime.c
浏览文件 @
8927c278
...
...
@@ -458,12 +458,12 @@ loop:
goto
loop
;
}
}
ret
=
1
;
ret
=
1
;
err:
BN_CTX_end
(
ctx
);
bn_check_top
(
rnd
);
return
(
ret
)
;
return
ret
;
}
static
int
witness
(
BIGNUM
*
w
,
const
BIGNUM
*
a
,
const
BIGNUM
*
a1
,
...
...
crypto/bn/bntest.c
浏览文件 @
8927c278
...
...
@@ -87,6 +87,8 @@
#include <openssl/x509.h>
#include <openssl/err.h>
#include "../crypto/bn/bn_lcl.h"
const
int
num0
=
100
;
/* number of tests */
const
int
num1
=
50
;
/* additional tests for some functions */
const
int
num2
=
5
;
/* number of tests for slow functions */
...
...
@@ -121,6 +123,7 @@ int test_gf2m_mod_solve_quad(BIO *bp,BN_CTX *ctx);
int
test_kron
(
BIO
*
bp
,
BN_CTX
*
ctx
);
int
test_sqrt
(
BIO
*
bp
,
BN_CTX
*
ctx
);
int
test_small_prime
(
BIO
*
bp
,
BN_CTX
*
ctx
);
int
test_probable_prime_coprime
(
BIO
*
bp
,
BN_CTX
*
ctx
);
int
rand_neg
(
void
);
static
int
results
=
0
;
...
...
@@ -270,6 +273,10 @@ int main(int argc, char *argv[])
if
(
!
test_small_prime
(
out
,
ctx
))
goto
err
;
(
void
)
BIO_flush
(
out
);
message
(
out
,
"Probable prime generation with coprimes"
);
if
(
!
test_probable_prime_coprime
(
out
,
ctx
))
goto
err
;
(
void
)
BIO_flush
(
out
);
#ifndef OPENSSL_NO_EC2M
message
(
out
,
"BN_GF2m_add"
);
if
(
!
test_gf2m_add
(
out
))
goto
err
;
...
...
@@ -1923,6 +1930,37 @@ err:
return
ret
;
}
int
test_probable_prime_coprime
(
BIO
*
bp
,
BN_CTX
*
ctx
)
{
int
i
,
j
,
ret
=
0
;
BIGNUM
r
;
BN_ULONG
primes
[
5
]
=
{
2
,
3
,
5
,
7
,
11
};
BN_init
(
&
r
);
for
(
i
=
0
;
i
<
1000
;
i
++
)
{
if
(
!
bn_probable_prime_dh_coprime
(
&
r
,
1024
,
ctx
))
goto
err
;
for
(
j
=
0
;
j
<
5
;
j
++
)
{
if
(
BN_mod_word
(
&
r
,
primes
[
j
])
==
0
)
{
BIO_printf
(
bp
,
"Number generated is not coprime to %ld:
\n
"
,
primes
[
j
]);
BN_print_fp
(
stdout
,
&
r
);
BIO_printf
(
bp
,
"
\n
"
);
goto
err
;
}
}
}
ret
=
1
;
err:
BN_clear
(
&
r
);
return
ret
;
}
int
test_lshift
(
BIO
*
bp
,
BN_CTX
*
ctx
,
BIGNUM
*
a_
)
{
BIGNUM
*
a
,
*
b
,
*
c
,
*
d
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录