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

9 lines
193 B
Java
Raw 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 interface ECMultiplier {
ECPoint multiply(ECPoint eCPoint, BigInteger bigInteger);
}