Home
last modified time | relevance | path

Searched refs:contentObj (Results 1 – 3 of 3) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyElf.java73 Object contentObj = cmsSignedData.getSignedContent().getContent(); in getProfileContent() local
74 if (!(contentObj instanceof byte[])) { in getProfileContent()
77 return new String((byte[]) contentObj, StandardCharsets.UTF_8); in getProfileContent()
DVerifyHap.java95 Object contentObj = cmsSignedData.getSignedContent().getContent(); in getProfileContent() local
96 if (!(contentObj instanceof byte[])) { in getProfileContent()
99 return new String((byte[]) contentObj, StandardCharsets.UTF_8); in getProfileContent()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DSignProvider.java608 Object contentObj = cmsSignedData.getSignedContent().getContent(); in checkProfileValid() local
609 if (!(contentObj instanceof byte[])) { in checkProfileValid()
612 profileContent = new String((byte[]) contentObj, StandardCharsets.UTF_8); in checkProfileValid()