package o; import java.util.List; /* loaded from: classes3.dex */ public final class RSA { public final BsP a; public final String c; public final List e; public RSA(BsP bsP, List list, String str) { C14957gcv.e(list, ""); C14957gcv.e(str, ""); this.a = bsP; this.e = list; this.c = str; } public final String toString() { BsP bsP = this.a; List list = this.e; String str = this.c; StringBuilder sb = new StringBuilder("CollateralList(prefill="); sb.append(bsP); sb.append(", collateral="); sb.append(list); sb.append(", minimumAmount="); sb.append(str); sb.append(")"); return sb.toString(); } public final int hashCode() { BsP bsP = this.a; return ((((bsP == null ? 0 : bsP.hashCode()) * 31) + this.e.hashCode()) * 31) + this.c.hashCode(); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof RSA)) { return false; } RSA rsa = (RSA) obj; return C14957gcv.b(this.a, rsa.a) && C14957gcv.b(this.e, rsa.e) && C14957gcv.b((Object) this.c, (Object) rsa.c); } }