修改domain id为0xD005D00

Signed-off-by: 罗键铭 <541416002@qq.com>
This commit is contained in:
kemin
2024-02-05 14:53:37 +08:00
parent a101a3c881
commit 52ff9b90f9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ extern "C" {
#endif
#endif
#define ATTEST_LOG_DOMAIN 0xD001810
#define ATTEST_LOG_DOMAIN 0xD005D00
#define ATTEST_LOG_LABEL "DEVATTEST"
#define HILOGD(fmt, ...) \
@@ -176,7 +176,7 @@ static int32_t GetTokenValueSpecial(uint8_t* tokenValueHmac, uint8_t tokenValueH
return ATTEST_OK;
}
static int32_t FormatUUID(uint8_t *inputData, int32_t inputLen, uint8_t *outputData, int32_t outputLen)
static int32_t FormatUUID(const uint8_t *inputData, int32_t inputLen, uint8_t *outputData, int32_t outputLen)
{
if ((inputData == NULL) || (outputData == NULL) || \
(inputLen == 0) || (outputLen == 0)) {
+1 -1
View File
@@ -66,7 +66,7 @@ static void AttestLogPrint(AttestLogLevel logLevel, const char *logBuf)
default:
break;
}
(void)HiLogPrint(LOG_CORE, hiLogLevel, 0xD001810, ATTESTLOG_LABEL, "%{public}s", logBuf);
(void)HiLogPrint(LOG_CORE, hiLogLevel, 0xD005D00, ATTESTLOG_LABEL, "%{public}s", logBuf);
}
#endif