Home
last modified time | relevance | path

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

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/utils/
DHapUtils.java127 String profileType = resultPair.getSecond(); in getAppIdentifier() local
128 if ("debug".equals(profileType)) { in getAppIdentifier()
130 } else if ("release".equals(profileType)) { in getAppIdentifier()
146 String profileType = null; in parseAppIdentifier() local
155 profileType = profileJson.get(profileTypeKey).getAsString(); in parseAppIdentifier()
156 if (profileType == null || profileType.length() == 0) { in parseAppIdentifier()
181 return Pair.create(ownerID, profileType); in parseAppIdentifier()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
DVerifyCodeSignature.java63 private static void checkOwnerID(byte[] signature, String profileOwnerID, String profileType) in checkOwnerID() argument
67 if ("debug".equals(profileType)) { in checkOwnerID()
79 if ("debug".equals(profileType)) { in checkOwnerID()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DSignProvider.java628 String profileType = profileJson.get(profileTypeKey).getAsString(); in checkProfileInfo() local
629 if (profileType == null || profileType.length() == 0) { in checkProfileInfo()
635 if (profileType.equalsIgnoreCase("release")) { in checkProfileInfo()
637 } else if (profileType.equalsIgnoreCase("debug")) { in checkProfileInfo()