9 lines
193 B
Java
9 lines
193 B
Java
|
package org.bouncycastle.math.ec;
|
||
|
|
||
|
import java.math.BigInteger;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface ECMultiplier {
|
||
|
ECPoint multiply(ECPoint eCPoint, BigInteger bigInteger);
|
||
|
}
|