#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier
{
/**
* Interface for classes encapsulating a point multiplication algorithm
* for ECPoint
s.
*/
public interface ECMultiplier
{
/**
* Multiplies the ECPoint p
by k
, i.e.
* p
is added k
times to itself.
* @param p The ECPoint
to be multiplied.
* @param k The factor by which p
is multiplied.
* @return p
multiplied by k
.
*/
ECPoint Multiply(ECPoint p, BigInteger k);
}
}
#pragma warning restore
#endif