Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
01a9a759
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看板
提交
01a9a759
编写于
7月 04, 2011
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add functions to return FIPS module version.
上级
6fa4c7c4
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
23 addition
and
1 deletion
+23
-1
CHANGES
CHANGES
+4
-0
fips/fips.c
fips/fips.c
+10
-0
fips/fips.h
fips/fips.h
+3
-0
fips/fips_locl.h
fips/fips_locl.h
+3
-0
fips/fips_test_suite.c
fips/fips_test_suite.c
+3
-1
未找到文件。
CHANGES
浏览文件 @
01a9a759
...
...
@@ -4,6 +4,10 @@
Changes between 1.0.1 and 1.1.0 [xx XXX xxxx]
*) Add functions FIPS_module_version() and FIPS_module_version_text()
to return numberical and string versions of the FIPS module number.
[Steve Henson]
*) Rename FIPS_mode_set and FIPS_mode to FIPS_module_mode_set and
FIPS_module_mode. FIPS_mode and FIPS_mode_set will be implmeneted
outside the validated module in the FIPS capable OpenSSL.
...
...
fips/fips.c
浏览文件 @
01a9a759
...
...
@@ -365,6 +365,16 @@ unsigned char *fips_signature_witness(void)
return
FIPS_signature
;
}
unsigned
long
FIPS_module_version
(
void
)
{
return
FIPS_MODULE_VERSION_NUMBER
;
}
const
char
*
FIPS_module_version_text
(
void
)
{
return
FIPS_MODULE_VERSION_TEXT
;
}
#if 0
/* The purpose of this is to ensure the error code exists and the function
* name is to keep the error checking script quiet
...
...
fips/fips.h
浏览文件 @
01a9a759
...
...
@@ -78,6 +78,9 @@ struct dh_method;
struct
CMAC_CTX_st
;
struct
hmac_ctx_st
;
unsigned
long
FIPS_module_version
(
void
);
const
char
*
FIPS_module_version_text
(
void
);
int
FIPS_module_mode_set
(
int
onoff
);
int
FIPS_module_mode
(
void
);
const
void
*
FIPS_rand_check
(
void
);
...
...
fips/fips_locl.h
浏览文件 @
01a9a759
...
...
@@ -67,6 +67,9 @@ int fips_post_failed(int id, int subid, void *ex);
int
fips_post_corrupt
(
int
id
,
int
subid
,
void
*
ex
);
int
fips_post_status
(
void
);
#define FIPS_MODULE_VERSION_NUMBER 0x20000000L
#define FIPS_MODULE_VERSION_TEXT "FIPS 2.0-dev unvalidated test module xx XXX xxxx"
#ifdef __cplusplus
}
#endif
...
...
fips/fips_test_suite.c
浏览文件 @
01a9a759
...
...
@@ -874,7 +874,9 @@ int main(int argc,char **argv)
FIPS_post_set_callback
(
post_cb
);
printf
(
"
\t
FIPS-mode test application
\n\n
"
);
printf
(
"
\t
FIPS-mode test application
\n
"
);
printf
(
"
\t
%s
\n\n
"
,
FIPS_module_version_text
());
if
(
argv
[
1
])
{
/* Corrupted KAT tests */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录