what-the-bank/sources/org/bouncycastle/math/ec/ZTauElement.java

15 lines
319 B
Java

package org.bouncycastle.math.ec;
import java.math.BigInteger;
/* loaded from: classes6.dex */
class ZTauElement {
public final BigInteger u;
public final BigInteger v;
public ZTauElement(BigInteger bigInteger, BigInteger bigInteger2) {
this.u = bigInteger;
this.v = bigInteger2;
}
}