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

12 lines
381 B
Java

package org.bouncycastle.math.ec;
import java.math.BigInteger;
/* loaded from: classes6.dex */
public class ReferenceMultiplier extends AbstractECMultiplier {
@Override // org.bouncycastle.math.ec.AbstractECMultiplier
protected ECPoint multiplyPositive(ECPoint eCPoint, BigInteger bigInteger) {
return ECAlgorithms.referenceMultiply(eCPoint, bigInteger);
}
}