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

17 lines
417 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.math.ec;
import org.bouncycastle.math.ec.ECPoint;
/* loaded from: classes6.dex */
public class WTauNafPreCompInfo implements PreCompInfo {
protected ECPoint.AbstractF2m[] preComp = null;
public void setPreComp(ECPoint.AbstractF2m[] abstractF2mArr) {
this.preComp = abstractF2mArr;
}
public ECPoint.AbstractF2m[] getPreComp() {
return this.preComp;
}
}