Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
74c40744
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看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
74c40744
编写于
9月 04, 2011
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Don't perform full DRBG health check on all DRBG types on power up, just
one shorter KAT per mechanism.
上级
1567b390
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
35 addition
and
44 deletion
+35
-44
fips/rand/fips_drbg_selftest.c
fips/rand/fips_drbg_selftest.c
+35
-44
未找到文件。
fips/rand/fips_drbg_selftest.c
浏览文件 @
74c40744
...
...
@@ -63,6 +63,7 @@
#include "fips_drbg_selftest.h"
typedef
struct
{
int
post
;
int
nid
;
unsigned
int
flags
;
...
...
@@ -108,7 +109,7 @@ typedef struct {
}
DRBG_SELFTEST_DATA
;
#define make_drbg_test_data(nid, flag, pr
) {
nid, flag | DRBG_FLAG_TEST, \
#define make_drbg_test_data(nid, flag, pr
, p) {p,
nid, flag | DRBG_FLAG_TEST, \
pr##_entropyinput, sizeof(pr##_entropyinput), \
pr##_nonce, sizeof(pr##_nonce), \
pr##_personalizationstring, sizeof(pr##_personalizationstring), \
...
...
@@ -129,26 +130,26 @@ typedef struct {
pr##_pr_returnedbits, sizeof(pr##_pr_returnedbits), \
}
#define make_drbg_test_data_df(nid, pr) \
make_drbg_test_data(nid, DRBG_FLAG_CTR_USE_DF, pr)
#define make_drbg_test_data_df(nid, pr
, p
) \
make_drbg_test_data(nid, DRBG_FLAG_CTR_USE_DF, pr
, p
)
static
DRBG_SELFTEST_DATA
drbg_test
[]
=
{
make_drbg_test_data_df
(
NID_aes_128_ctr
,
aes_128_use_df
),
make_drbg_test_data_df
(
NID_aes_192_ctr
,
aes_192_use_df
),
make_drbg_test_data_df
(
NID_aes_256_ctr
,
aes_256_use_df
),
make_drbg_test_data
(
NID_aes_128_ctr
,
0
,
aes_128_no_df
),
make_drbg_test_data
(
NID_aes_192_ctr
,
0
,
aes_192_no_df
),
make_drbg_test_data
(
NID_aes_256_ctr
,
0
,
aes_256_no_df
),
make_drbg_test_data
(
NID_sha1
,
0
,
sha1
),
make_drbg_test_data
(
NID_sha224
,
0
,
sha224
),
make_drbg_test_data
(
NID_sha256
,
0
,
sha256
),
make_drbg_test_data
(
NID_sha384
,
0
,
sha384
),
make_drbg_test_data
(
NID_sha512
,
0
,
sha512
),
make_drbg_test_data
(
NID_hmacWithSHA1
,
0
,
hmac_sha1
),
make_drbg_test_data
(
NID_hmacWithSHA224
,
0
,
hmac_sha224
),
make_drbg_test_data
(
NID_hmacWithSHA256
,
0
,
hmac_sha256
),
make_drbg_test_data
(
NID_hmacWithSHA384
,
0
,
hmac_sha384
),
make_drbg_test_data
(
NID_hmacWithSHA512
,
0
,
hmac_sha512
),
make_drbg_test_data_df
(
NID_aes_128_ctr
,
aes_128_use_df
,
0
),
make_drbg_test_data_df
(
NID_aes_192_ctr
,
aes_192_use_df
,
0
),
make_drbg_test_data_df
(
NID_aes_256_ctr
,
aes_256_use_df
,
1
),
make_drbg_test_data
(
NID_aes_128_ctr
,
0
,
aes_128_no_df
,
0
),
make_drbg_test_data
(
NID_aes_192_ctr
,
0
,
aes_192_no_df
,
0
),
make_drbg_test_data
(
NID_aes_256_ctr
,
0
,
aes_256_no_df
,
1
),
make_drbg_test_data
(
NID_sha1
,
0
,
sha1
,
0
),
make_drbg_test_data
(
NID_sha224
,
0
,
sha224
,
0
),
make_drbg_test_data
(
NID_sha256
,
0
,
sha256
,
1
),
make_drbg_test_data
(
NID_sha384
,
0
,
sha384
,
0
),
make_drbg_test_data
(
NID_sha512
,
0
,
sha512
,
0
),
make_drbg_test_data
(
NID_hmacWithSHA1
,
0
,
hmac_sha1
,
0
),
make_drbg_test_data
(
NID_hmacWithSHA224
,
0
,
hmac_sha224
,
0
),
make_drbg_test_data
(
NID_hmacWithSHA256
,
0
,
hmac_sha256
,
1
),
make_drbg_test_data
(
NID_hmacWithSHA384
,
0
,
hmac_sha384
,
0
),
make_drbg_test_data
(
NID_hmacWithSHA512
,
0
,
hmac_sha512
,
0
),
{
0
,
0
,
0
}
};
...
...
@@ -302,6 +303,7 @@ static int fips_drbg_health_check(DRBG_CTX *dctx, DRBG_SELFTEST_DATA *td)
unsigned
char
randout
[
1024
];
TEST_ENT
t
;
size_t
i
;
unsigned
int
reseed_counter_tmp
;
unsigned
char
*
p
=
(
unsigned
char
*
)
dctx
;
/* Initialise DRBG */
...
...
@@ -425,28 +427,15 @@ static int fips_drbg_health_check(DRBG_CTX *dctx, DRBG_SELFTEST_DATA *td)
FIPS_drbg_set_app_data
(
dctx
,
&
t
);
t
.
entlen
=
td
->
entlen
;
/* Test reseeding works */
dctx
->
reseed_interval
=
2
;
/* Test reseed counter works */
if
(
!
FIPS_drbg_instantiate
(
dctx
,
td
->
pers
,
td
->
perslen
))
goto
err
;
/* Save initial reseed counter */
reseed_counter_tmp
=
dctx
->
reseed_counter
;
/* Set reseed counter to beyond interval */
dctx
->
reseed_counter
=
dctx
->
reseed_interval
;
/* Check generation is now OK */
if
(
!
FIPS_drbg_generate
(
dctx
,
randout
,
td
->
katlen
,
0
,
0
,
td
->
adin
,
td
->
adinlen
))
goto
err
;
if
(
!
FIPS_drbg_generate
(
dctx
,
randout
,
td
->
katlen
,
0
,
0
,
td
->
adin
,
td
->
adinlen
))
goto
err
;
/* DRBG should now require a reseed */
if
(
dctx
->
status
!=
DRBG_STATUS_RESEED
)
{
FIPSerr
(
FIPS_F_FIPS_DRBG_HEALTH_CHECK
,
FIPS_R_RESEED_COUNTER_ERROR
);
goto
err
;
}
/* Generate again and check entropy has been requested for reseed */
/* Generate output and check entropy has been requested for reseed */
t
.
entcnt
=
0
;
if
(
!
FIPS_drbg_generate
(
dctx
,
randout
,
td
->
katlen
,
0
,
0
,
td
->
adin
,
td
->
adinlen
))
...
...
@@ -456,6 +445,12 @@ static int fips_drbg_health_check(DRBG_CTX *dctx, DRBG_SELFTEST_DATA *td)
FIPSerr
(
FIPS_F_FIPS_DRBG_HEALTH_CHECK
,
FIPS_R_ENTROPY_NOT_REQUESTED_FOR_RESEED
);
goto
err
;
}
/* Check reseed counter has been reset */
if
(
dctx
->
reseed_counter
!=
reseed_counter_tmp
+
1
)
{
FIPSerr
(
FIPS_F_FIPS_DRBG_HEALTH_CHECK
,
FIPS_R_RESEED_COUNTER_ERROR
);
goto
err
;
}
FIPS_drbg_uninstantiate
(
dctx
);
p
=
(
unsigned
char
*
)
&
dctx
->
d
;
...
...
@@ -513,6 +508,8 @@ int FIPS_selftest_drbg(void)
return
0
;
for
(
td
=
drbg_test
;
td
->
nid
!=
0
;
td
++
)
{
if
(
td
->
post
!=
1
)
continue
;
if
(
!
fips_post_started
(
FIPS_TEST_DRBG
,
td
->
nid
,
&
td
->
flags
))
return
1
;
if
(
!
fips_drbg_single_kat
(
dctx
,
td
))
...
...
@@ -521,12 +518,6 @@ int FIPS_selftest_drbg(void)
rv
=
0
;
continue
;
}
if
(
!
fips_drbg_health_check
(
dctx
,
td
))
{
fips_post_failed
(
FIPS_TEST_DRBG
,
td
->
nid
,
&
td
->
flags
);
rv
=
0
;
continue
;
}
if
(
!
fips_post_success
(
FIPS_TEST_DRBG
,
td
->
nid
,
&
td
->
flags
))
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录