42 lines
872 B
Java
42 lines
872 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class iHE {
|
|
public final String d;
|
|
|
|
private /* synthetic */ iHE(byte b) {
|
|
this((String) null);
|
|
}
|
|
|
|
public iHE(String str) {
|
|
this.d = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
StringBuilder sb = new StringBuilder("IntegrityNonce(tag=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
if (str == null) {
|
|
return 0;
|
|
}
|
|
return str.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof iHE) && C14957gcv.b((Object) this.d, (Object) ((iHE) obj).d);
|
|
}
|
|
|
|
public iHE() {
|
|
this((byte) 0);
|
|
}
|
|
}
|