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

33 lines
731 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.math.ec;
/* loaded from: classes6.dex */
public class WNafPreCompInfo implements PreCompInfo {
protected ECPoint[] preComp = null;
protected ECPoint[] preCompNeg = null;
protected ECPoint twice = null;
public void setTwice(ECPoint eCPoint) {
this.twice = eCPoint;
}
public void setPreCompNeg(ECPoint[] eCPointArr) {
this.preCompNeg = eCPointArr;
}
public void setPreComp(ECPoint[] eCPointArr) {
this.preComp = eCPointArr;
}
public ECPoint getTwice() {
return this.twice;
}
public ECPoint[] getPreCompNeg() {
return this.preCompNeg;
}
public ECPoint[] getPreComp() {
return this.preComp;
}
}