33 lines
731 B
Java
33 lines
731 B
Java
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;
|
|
}
|
|
}
|