You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.3 KiB

package p014e0;
import android.util.Base64;
import java.util.List;
import p020g0.C0737f;
/* renamed from: e0.e */
/* loaded from: classes.dex */
public final class C0648e {
/* renamed from: a */
public final String f2172a;
/* renamed from: b */
public final String f2173b;
/* renamed from: c */
public final String f2174c;
/* renamed from: d */
public final List<List<byte[]>> f2175d;
/* renamed from: e */
public final int f2176e = 0;
/* renamed from: f */
public final String f2177f;
public C0648e(String str, String str2, String str3, List<List<byte[]>> list) {
this.f2172a = (String) C0737f.m3033f(str);
this.f2173b = (String) C0737f.m3033f(str2);
this.f2174c = (String) C0737f.m3033f(str3);
this.f2175d = (List) C0737f.m3033f(list);
this.f2177f = m3215a(str, str2, str3);
}
/* renamed from: a */
public final String m3215a(String str, String str2, String str3) {
return str + "-" + str2 + "-" + str3;
}
/* renamed from: b */
public List<List<byte[]>> m3214b() {
return this.f2175d;
}
/* renamed from: c */
public int m3213c() {
return this.f2176e;
}
/* renamed from: d */
public String m3212d() {
return this.f2177f;
}
/* renamed from: e */
public String m3211e() {
return this.f2172a;
}
/* renamed from: f */
public String m3210f() {
return this.f2173b;
}
/* renamed from: g */
public String m3209g() {
return this.f2174c;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("FontRequest {mProviderAuthority: " + this.f2172a + ", mProviderPackage: " + this.f2173b + ", mQuery: " + this.f2174c + ", mCertificates:");
for (int i = 0; i < this.f2175d.size(); i++) {
sb.append(" [");
List<byte[]> list = this.f2175d.get(i);
for (int i2 = 0; i2 < list.size(); i2++) {
sb.append(" \"");
sb.append(Base64.encodeToString(list.get(i2), 0));
sb.append("\"");
}
sb.append(" ]");
}
sb.append("}");
sb.append("mCertificatesArray: " + this.f2176e);
return sb.toString();
}
}