Home
last modified time | relevance | path

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

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DRemoteSignProvider.java37 … boolean checkInputCertMatchWithProfile(X509Certificate inputCert, X509Certificate certInProfile) { in checkInputCertMatchWithProfile() argument
38 return inputCert == null ? false : inputCert.equals(certInProfile); in checkInputCertMatchWithProfile()
DSignProvider.java634 X509Certificate certInProfile; in checkProfileInfo() local
636 certInProfile = getReleaseCertificate(buildInfoObject); in checkProfileInfo()
638 certInProfile = getDevelopmentCertificate(buildInfoObject); in checkProfileInfo()
642 … if (!inputCerts.isEmpty() && !checkInputCertMatchWithProfile(inputCerts.get(0), certInProfile)) { in checkProfileInfo()
645 String cn = getCertificateCN(certInProfile); in checkProfileInfo()
659 … boolean checkInputCertMatchWithProfile(X509Certificate inputCert, X509Certificate certInProfile) { in checkInputCertMatchWithProfile() argument