Searched refs:tmpOutput (Results 1 – 1 of 1) sorted by relevance
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/ |
| D | SignProvider.java | 318 File tmpOutput = null; in sign() local 328 tmpOutput = File.createTempFile("signedHap", "." + suffix); in sign() 331 tmpOutput = output; in sign() 335 Zip zip = copyFileAndAlignment(input, tmpOutput, alignment); in sign() 337 try (RandomAccessFile outputHap = new RandomAccessFile(tmpOutput, "rw")) { in sign() 353 appendCodeSignBlock(signerConfig, tmpOutput, suffix, centralDirectoryOffset, zip); in sign() 368 return doAfterSign(isRet, isPathOverlap, tmpOutput, output); in sign() 385 private void appendCodeSignBlock(SignerConfig signerConfig, File tmpOutput, String suffix, in appendCodeSignBlock() argument 398 …byte[] codeSignArray = codeSigning.getCodeSignBlock(tmpOutput, codeSignOffset, suffix, profileCont… in appendCodeSignBlock() 459 …private boolean doAfterSign(boolean isSuccess, boolean isPathOverlap, File tmpOutput, File output)… in doAfterSign() argument [all …]
|