Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
eedf9c49
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
大约 1 年 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
eedf9c49
编写于
10月 13, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 13, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1363 FIX: udid需要支持预设的const.product.udid
Merge pull request !1363 from cheng_jinsong/1012_udid
上级
8d3b60b2
4a5346e5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
24 deletion
+8
-24
interfaces/innerkits/syspara/param_comm.c
interfaces/innerkits/syspara/param_comm.c
+7
-24
services/etc/param/ohos.para.dac
services/etc/param/ohos.para.dac
+1
-0
未找到文件。
interfaces/innerkits/syspara/param_comm.c
浏览文件 @
eedf9c49
...
...
@@ -26,9 +26,8 @@
#include "sysparam_errno.h"
#ifdef USE_MBEDTLS
#include "mbedtls/sha256.h"
#elif !(defined OHOS_LITE)
#include "openssl/sha.h"
#endif
#include "securec.h"
#include "beget_ext.h"
...
...
@@ -152,27 +151,6 @@ static int GetSha256Value(const char *input, char *udid, int udidSize)
}
return
EC_SUCCESS
;
}
#elif !(defined OHOS_LITE)
static
int
GetSha256Value
(
const
char
*
input
,
char
*
udid
,
int
udidSize
)
{
char
buf
[
DEV_BUF_LENGTH
]
=
{
0
};
unsigned
char
hash
[
SHA256_DIGEST_LENGTH
]
=
{
0
};
SHA256_CTX
sha256
;
if
((
SHA256_Init
(
&
sha256
)
==
0
)
||
(
SHA256_Update
(
&
sha256
,
input
,
strlen
(
input
))
==
0
)
||
(
SHA256_Final
(
hash
,
&
sha256
)
==
0
))
{
return
-
1
;
}
for
(
size_t
i
=
0
;
i
<
SHA256_DIGEST_LENGTH
;
i
++
)
{
unsigned
char
value
=
hash
[
i
];
(
void
)
memset_s
(
buf
,
DEV_BUF_LENGTH
,
0
,
DEV_BUF_LENGTH
);
int
len
=
sprintf_s
(
buf
,
sizeof
(
buf
),
"%02X"
,
value
);
if
(
len
>
0
&&
strcat_s
(
udid
,
udidSize
,
buf
)
!=
0
)
{
return
-
1
;
}
}
return
0
;
}
#else
static
int
GetSha256Value
(
const
char
*
input
,
char
*
udid
,
int
udidSize
)
{
...
...
@@ -204,6 +182,11 @@ INIT_LOCAL_API int GetDevUdid_(char *udid, int size)
if
(
size
<
UDID_LEN
||
udid
==
NULL
)
{
return
EC_FAILURE
;
}
uint32_t
len
=
size
;
int
ret
=
SystemGetParameter
(
"const.product.udid"
,
udid
,
&
len
);
BEGET_CHECK
(
ret
!=
0
,
return
ret
);
const
char
*
manufacture
=
GetManufacture_
();
const
char
*
model
=
GetProductModel_
();
const
char
*
sn
=
GetSerial_
();
...
...
@@ -224,7 +207,7 @@ INIT_LOCAL_API int GetDevUdid_(char *udid, int size)
return
-
1
;
}
int
ret
=
GetSha256Value
(
tmp
,
udid
,
size
);
ret
=
GetSha256Value
(
tmp
,
udid
,
size
);
free
(
tmp
);
return
ret
;
}
...
...
services/etc/param/ohos.para.dac
浏览文件 @
eedf9c49
...
...
@@ -32,6 +32,7 @@ persist.appspawn. = root:root:0775
#udid and sn, only read
ohos.boot.sn = root:deviceprivate:0750
const.product.udid = root:deviceprivate:0750
const.actionable_compatible_property.enabled = root:root:0777
const.postinstall.fstab.prefix = root:root:0777
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录