105 lines
3.4 KiB
Java
105 lines
3.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Csb {
|
|
|
|
@SerializedName("oaepHashAlgo")
|
|
public final String a;
|
|
|
|
@SerializedName("e2eeSid")
|
|
public final String b;
|
|
|
|
@SerializedName("pseudoPubKey")
|
|
public final String c;
|
|
|
|
@SerializedName("pseudoPubKeyIndex")
|
|
public final String d;
|
|
|
|
@SerializedName("pseudoOaepHashAlgo")
|
|
public final String e;
|
|
|
|
@SerializedName("serverRandom")
|
|
public final String f;
|
|
|
|
@SerializedName("pseudoSid")
|
|
public final String g;
|
|
|
|
@SerializedName("pubKeyIndex")
|
|
public final int h;
|
|
|
|
@SerializedName("pubKey")
|
|
public final String i;
|
|
|
|
@SerializedName("pseudoRandom")
|
|
public final String j;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
String str3 = this.f;
|
|
String str4 = this.i;
|
|
int i = this.h;
|
|
String str5 = this.g;
|
|
String str6 = this.j;
|
|
String str7 = this.c;
|
|
String str8 = this.e;
|
|
String str9 = this.d;
|
|
StringBuilder sb = new StringBuilder("E2EEEntity(oaepHashAlgo=");
|
|
sb.append(str);
|
|
sb.append(", e2eeSid=");
|
|
sb.append(str2);
|
|
sb.append(", serverRandom=");
|
|
sb.append(str3);
|
|
sb.append(", pubKey=");
|
|
sb.append(str4);
|
|
sb.append(", pubKeyIndex=");
|
|
sb.append(i);
|
|
sb.append(", pseudoSid=");
|
|
sb.append(str5);
|
|
sb.append(", pseudoRandom=");
|
|
sb.append(str6);
|
|
sb.append(", pseudoPubKey=");
|
|
sb.append(str7);
|
|
sb.append(", pseudoOaepHashAlgo=");
|
|
sb.append(str8);
|
|
sb.append(", pseudoPubKeyIndex=");
|
|
sb.append(str9);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.a.hashCode();
|
|
String str = this.b;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.f;
|
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.i;
|
|
int hashCode4 = str3 == null ? 0 : str3.hashCode();
|
|
int hashCode5 = Integer.hashCode(this.h);
|
|
String str4 = this.g;
|
|
int hashCode6 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.j;
|
|
int hashCode7 = str5 == null ? 0 : str5.hashCode();
|
|
String str6 = this.c;
|
|
int hashCode8 = str6 == null ? 0 : str6.hashCode();
|
|
String str7 = this.e;
|
|
int hashCode9 = str7 == null ? 0 : str7.hashCode();
|
|
String str8 = this.d;
|
|
return (((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + (str8 != null ? str8.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Csb)) {
|
|
return false;
|
|
}
|
|
Csb csb = (Csb) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) csb.a) && C14957gcv.b((Object) this.b, (Object) csb.b) && C14957gcv.b((Object) this.f, (Object) csb.f) && C14957gcv.b((Object) this.i, (Object) csb.i) && this.h == csb.h && C14957gcv.b((Object) this.g, (Object) csb.g) && C14957gcv.b((Object) this.j, (Object) csb.j) && C14957gcv.b((Object) this.c, (Object) csb.c) && C14957gcv.b((Object) this.e, (Object) csb.e) && C14957gcv.b((Object) this.d, (Object) csb.d);
|
|
}
|
|
}
|