Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
iSulad
提交
0ca8efff
I
iSulad
项目概览
openeuler
/
iSulad
通知
15
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
I
iSulad
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0ca8efff
编写于
7月 21, 2020
作者:
W
WangFengTu
提交者:
lifeng68
7月 25, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
create aes key file path in aes module
Signed-off-by:
N
WangFengTu
<
wangfengtu@huawei.com
>
上级
51a09ebd
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
17 addition
and
11 deletion
+17
-11
src/daemon/modules/image/oci/registry/aes.c
src/daemon/modules/image/oci/registry/aes.c
+15
-3
src/daemon/modules/image/oci/registry/aes.h
src/daemon/modules/image/oci/registry/aes.h
+1
-1
src/daemon/modules/image/oci/registry/auths.c
src/daemon/modules/image/oci/registry/auths.c
+1
-7
未找到文件。
src/daemon/modules/image/oci/registry/aes.c
浏览文件 @
0ca8efff
...
@@ -24,11 +24,23 @@
...
@@ -24,11 +24,23 @@
static
char
*
g_aeskey
=
DEFAULT_AUTH_AESKEY
;
static
char
*
g_aeskey
=
DEFAULT_AUTH_AESKEY
;
void
aes_set_key_
path
(
char
*
key_path
)
void
aes_set_key_
dir
(
char
*
key_dir
)
{
{
if
(
key_path
!=
NULL
)
{
int
sret
=
0
;
g_aeskey
=
util_strdup_s
(
key_path
);
char
path
[
PATH_MAX
]
=
{
0
};
if
(
key_dir
==
NULL
)
{
return
;
}
}
sret
=
snprintf
(
path
,
sizeof
(
path
),
"%s/%s"
,
key_dir
,
AUTH_AESKEY_NAME
);
if
(
sret
<
0
||
(
size_t
)
sret
>=
sizeof
(
path
))
{
ERROR
(
"Failed to sprintf auths %s/%s"
,
key_dir
,
AUTH_AESKEY_NAME
);
return
;
}
g_aeskey
=
util_strdup_s
(
path
);
return
;
return
;
}
}
...
...
src/daemon/modules/image/oci/registry/aes.h
浏览文件 @
0ca8efff
...
@@ -23,7 +23,7 @@ extern "C" {
...
@@ -23,7 +23,7 @@ extern "C" {
#define AUTH_AESKEY_NAME "aeskey"
#define AUTH_AESKEY_NAME "aeskey"
#define DEFAULT_AUTH_AESKEY "/root/.isulad/" AUTH_AESKEY_NAME
#define DEFAULT_AUTH_AESKEY "/root/.isulad/" AUTH_AESKEY_NAME
void
aes_set_key_
path
(
char
*
key_path
);
void
aes_set_key_
dir
(
char
*
key_dir
);
// output length is "input_len+AES_256_CFB_IV_LEN"
// output length is "input_len+AES_256_CFB_IV_LEN"
int
aes_encode
(
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
);
int
aes_encode
(
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
);
// output length is "input_len-AES_256_CFB_IV_LEN"
// output length is "input_len-AES_256_CFB_IV_LEN"
...
...
src/daemon/modules/image/oci/registry/auths.c
浏览文件 @
0ca8efff
...
@@ -52,13 +52,7 @@ void auths_set_dir(char *auth_dir)
...
@@ -52,13 +52,7 @@ void auths_set_dir(char *auth_dir)
g_auth_path
=
util_strdup_s
(
path
);
g_auth_path
=
util_strdup_s
(
path
);
sret
=
snprintf
(
path
,
sizeof
(
path
),
"%s/%s"
,
auth_dir
,
AUTH_AESKEY_NAME
);
aes_set_key_dir
(
auth_dir
);
if
(
sret
<
0
||
(
size_t
)
sret
>=
sizeof
(
path
))
{
ERROR
(
"Failed to sprintf auths aeskey, auth dir: %s"
,
auth_dir
);
return
;
}
aes_set_key_path
(
path
);
return
;
return
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录