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

24 lines
491 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 FixedPointPreCompInfo implements PreCompInfo {
protected ECPoint[] preComp = null;
protected int width = -1;
public void setWidth(int i) {
this.width = i;
}
public void setPreComp(ECPoint[] eCPointArr) {
this.preComp = eCPointArr;
}
public int getWidth() {
return this.width;
}
public ECPoint[] getPreComp() {
return this.preComp;
}
}