Searched refs:decodeCert (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/security/keystore/recovery/
H A DX509CertificateParsingUtils.java39 return decodeCert(decodeBase64(string));
61 private static X509Certificate decodeCert(byte[] certBytes) throws CertificateException { method in class:X509CertificateParsingUtils
62 return decodeCert(new ByteArrayInputStream(certBytes));
72 private static X509Certificate decodeCert(InputStream inStream) throws CertificateException { method in class:X509CertificateParsingUtils
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/
H A DSigXml.java103 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content)));
112 return CertUtils.decodeCert(CertUtils.decodeBase64(contents.get(0)));
H A DCertXml.java159 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content)));
174 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content)));
H A DCertUtils.java95 static X509Certificate decodeCert(byte[] certBytes) throws CertParsingException { method in class:CertUtils
96 return decodeCert(new ByteArrayInputStream(certBytes));
106 static X509Certificate decodeCert(InputStream inStream) throws CertParsingException { method in class:CertUtils
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/certificate/
H A DCertUtilsTest.java79 X509Certificate cert = CertUtils.decodeCert(f);
86 X509Certificate cert = CertUtils.decodeCert(in);
93 assertThrows(CertParsingException.class, () -> CertUtils.decodeCert(in));
99 assertThrows(CertParsingException.class, () -> CertUtils.decodeCert(in));
105 assertThrows(CertParsingException.class, () -> CertUtils.decodeCert(in));
110 X509Certificate cert = CertUtils.decodeCert(TestData.INTERMEDIATE_CA_2.getEncoded());
119 assertThrows(CertParsingException.class, () -> CertUtils.decodeCert(modifiedCertBytes));
/frameworks/base/config/
H A Dboot-image-profile.txt4973 HPLandroid/security/keystore/recovery/X509CertificateParsingUtils;->decodeCert(Ljava/io/InputStream;)Ljava/security/cert/X509Certificate;
[all...]

Completed in 102 milliseconds