Home
last modified time | relevance | path

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

/aosp12/build/make/tools/releasetools/
H A Dtest_sign_target_files_apks.py215 cert2 = cert2_fp.read()
223 base64.b16encode(common.ParseCertificate(cert2)).lower())
227 base64.b16encode(common.ParseCertificate(cert2)).lower())
241 cert2 = cert2_fp.read()
246 base64.b16encode(common.ParseCertificate(cert2)).lower())
259 cert2 = cert2_fp.read()
266 base64.b16encode(common.ParseCertificate(cert2)).lower())
270 base64.b16encode(common.ParseCertificate(cert2)).lower())
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/hotspot2/pps/
H A DCredential.java1244 public static boolean isX509CertificateEquals(X509Certificate cert1, X509Certificate cert2) { in isX509CertificateEquals() argument
1245 if (cert1 == null && cert2 == null) { in isX509CertificateEquals()
1250 if (cert1 == null || cert2 == null) { in isX509CertificateEquals()
1256 result = Arrays.equals(cert1.getEncoded(), cert2.getEncoded()); in isX509CertificateEquals()