Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
ad62532b
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ad62532b
编写于
4月 06, 2023
作者:
L
liyufan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
code check
Signed-off-by:
N
liyufan
<
liyufan5@huawei.com
>
上级
3749020a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
29 deletion
+30
-29
security_lite/huks/liteos_m_adapter/hks_mac_test.c
security_lite/huks/liteos_m_adapter/hks_mac_test.c
+30
-29
未找到文件。
security_lite/huks/liteos_m_adapter/hks_mac_test.c
浏览文件 @
ad62532b
...
...
@@ -47,14 +47,14 @@ static char IntToAscii(uint8_t in_num)
return
(
char
)(
'A'
+
in_num
-
10
);
}
static
int32_t
BufferToAscii
(
uint8_t
*
src
,
uint32_t
src_size
,
char
*
dst
,
uint32_t
*
dst_size
)
{
static
int32_t
BufferToAscii
(
uint8_t
*
src
,
uint32_t
src_size
,
char
*
dst
,
uint32_t
*
dst_size
)
{
const
uint32_t
ascii_len
=
src_size
*
2
+
1
;
if
(
*
dst_size
<
ascii_len
)
{
printf
(
"buffer is too samll."
);
return
-
1
;
}
for
(
uint32_t
i
=
0
;
i
<
src_size
;
i
++
)
{
for
(
uint32_t
i
=
0
;
i
<
src_size
;
i
++
)
{
dst
[
2
*
i
]
=
IntToAscii
(
src
[
i
]
>>
4
);
/* take 4 high-order digits*/
dst
[
2
*
i
+
1
]
=
IntToAscii
(
src
[
i
]
&
0
b00001111
);
/*take 4 low-order digits*/
}
...
...
@@ -71,7 +71,8 @@ static void printBuffer(uint8_t* buffer, uint32_t buffer_size)
for
(
uint32_t
i
=
0
;
i
<
(
print_count
+
1
);
i
++
)
{
char
chars
[
SINGLE_PRINT_LENGTH
*
2
+
1
]
=
{
0
};
uint32_t
char_size
=
SINGLE_PRINT_LENGTH
*
2
+
1
;
BufferToAscii
(
buffer
+
index
,
(
i
==
print_count
)
?
buffer_size
%
SINGLE_PRINT_LENGTH
:
SINGLE_PRINT_LENGTH
,
chars
,
&
char_size
);
BufferToAscii
(
buffer
+
index
,
(
i
==
print_count
)
?
buffer_size
%
SINGLE_PRINT_LENGTH
:
SINGLE_PRINT_LENGTH
,
chars
,
&
char_size
);
printf
(
"buff[%2u] size[%2u]:
\"
%s
\"
"
,
i
,
(
char_size
-
1
)
/
2
,
chars
);
printf
(
"
\n
"
);
index
+=
SINGLE_PRINT_LENGTH
;
...
...
@@ -82,39 +83,39 @@ static uint8_t CharToHex(char c)
{
if
((
c
>=
'A'
)
&&
(
c
<=
'F'
))
{
return
(
c
-
'A'
+
10
);
}
else
if
((
c
>=
'a'
)
&&
(
c
<=
'f'
))
{
}
else
if
((
c
>=
'a'
)
&&
(
c
<=
'f'
))
{
return
(
c
-
'a'
+
10
);
}
else
if
((
c
>=
'0'
)
&&
(
c
<=
'9'
))
{
}
else
if
((
c
>=
'0'
)
&&
(
c
<=
'9'
))
{
return
(
c
-
'0'
);
}
else
{
}
else
{
return
16
;
}
}
int32_t
HexStringToByteForTest
(
const
char
*
hexStr
,
uint8_t
*
byte
,
uint32_t
byteLen
)
{
if
(
byte
==
NULL
||
hexStr
==
NULL
)
{
return
-
1
;
}
uint32_t
realHexLen
=
strlen
(
hexStr
);
/* even number or not */
if
(
realHexLen
%
2
!=
0
||
byteLen
<
realHexLen
/
2
)
{
return
-
1
;
}
for
(
uint32_t
i
=
0
;
i
<
realHexLen
/
2
;
i
++
)
{
uint8_t
high
=
CharToHex
(
hexStr
[
i
*
2
]);
uint8_t
low
=
CharToHex
(
hexStr
[
i
*
2
+
1
]);
if
(
high
==
16
||
low
==
16
)
{
return
-
1
;
uint32_t
byteLen
)
{
if
(
byte
==
NULL
||
hexStr
==
NULL
)
{
return
-
1
;
}
byte
[
i
]
=
high
<<
4
;
/* 4: Set the high nibble */
byte
[
i
]
|=
low
;
/* Set the low nibble */
}
return
0
;
uint32_t
realHexLen
=
strlen
(
hexStr
);
/* even number or not */
if
(
realHexLen
%
2
!=
0
||
byteLen
<
realHexLen
/
2
)
{
return
-
1
;
}
for
(
uint32_t
i
=
0
;
i
<
realHexLen
/
2
;
i
++
)
{
uint8_t
high
=
CharToHex
(
hexStr
[
i
*
2
]);
uint8_t
low
=
CharToHex
(
hexStr
[
i
*
2
+
1
]);
if
(
high
==
16
||
low
==
16
)
{
return
-
1
;
}
/* 4: Set the high nibble */
byte
[
i
]
=
high
<<
4
;
/* Set the low nibble */
byte
[
i
]
|=
low
;
}
return
0
;
}
static
int32_t
ConstructParamSet
(
struct
HksParamSet
**
out
,
const
struct
HksParam
*
inParam
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录