Home
last modified time | relevance | path

Searched refs:publicCertsFile (Results 1 – 2 of 2) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DLocalJKSSignProvider.java77 String publicCertsFile = signParams.get(ParamConstants.PARAM_LOCAL_PUBLIC_CERT); in checkPublicKeyPath() local
78 File publicKeyFile = new File(publicCertsFile); in checkPublicKeyPath()
82 LOGGER.error("file is invalid: " + publicCertsFile + System.lineSeparator(), e); in checkPublicKeyPath()
83 throw new InvalidParamsException("Invalid file: " + publicCertsFile); in checkPublicKeyPath()
DSignProvider.java193 String publicCertsFile = signParams.get(ParamConstants.PARAM_LOCAL_PUBLIC_CERT); in getPublicCerts() local
194 if (StringUtils.isEmpty(publicCertsFile)) { in getPublicCerts()
197 return getCertificateChainFromFile(publicCertsFile); in getPublicCerts()