blob: 107e1937bea8dbe455cbdaef93f41509e6c4bacb [file] [log] [blame]
package org.bouncycastle.math.ec;
import java.math.BigInteger;
public class ReferenceMultiplier extends AbstractECMultiplier
{
protected ECPoint multiplyPositive(ECPoint p, BigInteger k)
{
return ECAlgorithms.referenceMultiply(p, k);
}
}