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

12 lines
381 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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);
}
}