Rabbit-R1/switch port/java/sources/okhttp3/internal/tls/BasicTrustRootIndex.java
2024-05-21 17:08:36 -04:00

66 lines
3.5 KiB
Java

package okhttp3.internal.tls;
import java.security.cert.X509Certificate;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import javax.security.auth.x500.X500Principal;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: BasicTrustRootIndex.kt */
@Metadata(bv = {1, 0, 3}, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010$\n\u0002\u0018\u0002\n\u0002\u0010\"\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\u0018\u00002\u00020\u0001B\u0019\u0012\u0012\u0010\u0002\u001a\n\u0012\u0006\b\u0001\u0012\u00020\u00040\u0003\"\u00020\u0004¢\u0006\u0002\u0010\u0005J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\rH\u0096\u0002J\u0012\u0010\u000e\u001a\u0004\u0018\u00010\u00042\u0006\u0010\u000f\u001a\u00020\u0004H\u0016J\b\u0010\u0010\u001a\u00020\u0011H\u0016R \u0010\u0006\u001a\u0014\u0012\u0004\u0012\u00020\b\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00040\t0\u0007X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u0012"}, d2 = {"Lokhttp3/internal/tls/BasicTrustRootIndex;", "Lokhttp3/internal/tls/TrustRootIndex;", "caCerts", "", "Ljava/security/cert/X509Certificate;", "([Ljava/security/cert/X509Certificate;)V", "subjectToCaCerts", "", "Ljavax/security/auth/x500/X500Principal;", "", "equals", "", "other", "", "findByIssuerAndSignature", "cert", "hashCode", "", "okhttp"}, k = 1, mv = {1, 4, 0})
/* loaded from: classes3.dex */
public final class BasicTrustRootIndex implements TrustRootIndex {
private final Map<X500Principal, Set<X509Certificate>> subjectToCaCerts;
public BasicTrustRootIndex(X509Certificate... caCerts) {
Intrinsics.checkNotNullParameter(caCerts, "caCerts");
LinkedHashMap linkedHashMap = new LinkedHashMap();
for (X509Certificate x509Certificate : caCerts) {
X500Principal subjectX500Principal = x509Certificate.getSubjectX500Principal();
Intrinsics.checkNotNullExpressionValue(subjectX500Principal, "caCert.subjectX500Principal");
Object obj = linkedHashMap.get(subjectX500Principal);
if (obj == null) {
obj = (Set) new LinkedHashSet();
linkedHashMap.put(subjectX500Principal, obj);
}
((Set) obj).add(x509Certificate);
}
this.subjectToCaCerts = linkedHashMap;
}
@Override // okhttp3.internal.tls.TrustRootIndex
public X509Certificate findByIssuerAndSignature(X509Certificate cert) {
Intrinsics.checkNotNullParameter(cert, "cert");
Set<X509Certificate> set = this.subjectToCaCerts.get(cert.getIssuerX500Principal());
Object obj = null;
if (set == null) {
return null;
}
Iterator<T> it = set.iterator();
while (true) {
if (!it.hasNext()) {
break;
}
Object next = it.next();
try {
cert.verify(((X509Certificate) next).getPublicKey());
obj = next;
break;
} catch (Exception unused) {
}
}
return (X509Certificate) obj;
}
public boolean equals(Object other) {
return other == this || ((other instanceof BasicTrustRootIndex) && Intrinsics.areEqual(((BasicTrustRootIndex) other).subjectToCaCerts, this.subjectToCaCerts));
}
public int hashCode() {
return this.subjectToCaCerts.hashCode();
}
}