24 lines
491 B
Java
24 lines
491 B
Java
|
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;
|
||
|
}
|
||
|
}
|