Searched refs:decodeBase64 (Results 1 – 8 of 8) sorted by relevance
103 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content))); in parseIntermediateCerts()112 return CertUtils.decodeCert(CertUtils.decodeBase64(contents.get(0))); in parseSignerCert()119 return CertUtils.decodeBase64(contents.get(0)); in parseFileSignature()
135 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content))); in parseIntermediateCerts()150 res.add(CertUtils.decodeCert(CertUtils.decodeBase64(content))); in parseEndpointCerts()
228 public static byte[] decodeBase64(String str) throws CertParsingException { in decodeBase64() method in CertUtils
39 return decodeCert(decodeBase64(string)); in decodeBase64Cert()50 private static byte[] decodeBase64(String string) { in decodeBase64() method in X509CertificateParsingUtils
124 assertThat(CertUtils.decodeBase64("VEVTVA==")).isEqualTo("TEST".getBytes(UTF_8)); in decodeBase64_succeeds()129 assertThat(CertUtils.decodeBase64("")).hasLength(0); in decodeBase64_succeedsIfEmptyInput()134 assertThrows(CertParsingException.class, () -> CertUtils.decodeBase64("EVTVA==")); in decodeBase64_throwsIfInvalidInput()
67 public static byte[] decodeBase64(byte[] base64Data) { in decodeBase64() method in Base64
918 partData = Base64.decodeBase64(partData); in parseParts()
48353 Landroid/security/keystore/recovery/X509CertificateParsingUtils;->decodeBase64(Ljava/lang/String;)[B