Home
last modified time | relevance | path

Searched refs:SignerConfig (Results 1 – 10 of 10) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/
DPkcs7Generator.java18 import com.ohos.hapsigntool.hap.config.SignerConfig;
38 byte[] generateSignedData(byte[] content, SignerConfig signerConfig) throws SignatureException; in generateSignedData()
DBcPkcs7Generator.java18 import com.ohos.hapsigntool.hap.config.SignerConfig;
83 …public byte[] generateSignedData(byte[] content, SignerConfig signerConfig) throws SignatureExcept… in generateSignedData()
106 SignerConfig signerConfig, in packagePKCS7()
143 … SignatureAlgorithm signatureAlgorithm,byte[] unsignedHapDigest, SignerConfig signerConfig) in getSignerInfo()
171 SignerConfig signerConfig, in createSignerInfo()
234 SignerConfig signerConfig, in verifySignatureFromServer()
DSignHap.java19 import com.ohos.hapsigntool.hap.config.SignerConfig;
259 SignerConfig signerConfig, in getHapSigningBlock()
278 SignerConfig signerConfig, in generateHapSigningBlock()
375SignerConfig signerConfig, Map<ContentDigestAlgorithm, byte[]> contentDigests) throws SignatureExc… in generateHapSignatureSchemeBlock()
386SignerConfig signerConfig, Map<ContentDigestAlgorithm, byte[]> contentDigests) throws SignatureExc… in generateSignerBlock()
420 …public static byte[] sign(ZipDataInput[] contents, SignerConfig signerConfig, List<SigningBlock> o… in sign()
DSignElf.java21 import com.ohos.hapsigntool.hap.config.SignerConfig;
81 public static boolean sign(SignerConfig signerConfig, Map<String, String> signParams) { in sign()
141 private static boolean writeBlockDataToFile(SignerConfig signerConfig, in writeBlockDataToFile()
244 …private static SignBlockData generateCodeSignByte(SignerConfig signerConfig, Map<String, String> s… in generateCodeSignByte()
DSignBin.java18 import com.ohos.hapsigntool.hap.config.SignerConfig;
60 public static boolean sign(SignerConfig signerConfig, Map<String, String> signParams) { in sign()
186 …private static boolean writeSignDataToOutputFile(SignerConfig signerConfig, String outputFile, Str… in writeSignDataToOutputFile()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
DSignedDataGenerator.java19 import com.ohos.hapsigntool.hap.config.SignerConfig;
41 byte[] generateSignedData(byte[] content, SignerConfig signerConfig) throws CodeSignException; in generateSignedData()
DBcSignedDataGenerator.java21 import com.ohos.hapsigntool.hap.config.SignerConfig;
92 …public byte[] generateSignedData(byte[] content, SignerConfig signConfig) throws CodeSignException… in generateSignedData()
104 …private Pair<DERSet, DERSet> getSignInfo(byte[] content, SignerConfig signConfig) throws CodeSignE… in getSignInfo()
117 SignerConfig signConfig) throws CodeSignException { in createSignInfo()
DCodeSigning.java30 import com.ohos.hapsigntool.hap.config.SignerConfig;
89 private final SignerConfig signConfig;
100 public CodeSigning(SignerConfig signConfig) { in CodeSigning()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DSignProvider.java27 import com.ohos.hapsigntool.hap.config.SignerConfig;
218 …public SignerConfig createSignerConfigs(List<X509Certificate> certificates, Optional<X509CRL> crl,… in createSignerConfigs()
220 SignerConfig signerConfig = new SignerConfig(); in createSignerConfigs()
244 SignerConfig signerConfig; in signBin()
276 SignerConfig signerConfig = null; in signElf()
349 SignerConfig signerConfig = createSignerConfigs(publicCerts, crl, options); in sign()
385 private void appendCodeSignBlock(SignerConfig signerConfig, File tmpOutput, String suffix, in appendCodeSignBlock()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/config/
DSignerConfig.java35 public class SignerConfig { class