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

17 lines
417 B
Java

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;
}
}