35 lines
960 B
C#
35 lines
960 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier
|
|
{
|
|
/**
|
|
* Class implementing the NAF (Non-Adjacent Form) multiplication algorithm (left-to-right).
|
|
*/
|
|
public class NafL2RMultiplier
|
|
: AbstractECMultiplier
|
|
{
|
|
protected override ECPoint MultiplyPositive(ECPoint p, BigInteger k)
|
|
{
|
|
int[] naf = WNafUtilities.GenerateCompactNaf(k);
|
|
|
|
ECPoint addP = p.Normalize(), subP = addP.Negate();
|
|
|
|
ECPoint R = p.Curve.Infinity;
|
|
|
|
int i = naf.Length;
|
|
while (--i >= 0)
|
|
{
|
|
int ni = naf[i];
|
|
int digit = ni >> 16, zeroes = ni & 0xFFFF;
|
|
|
|
R = R.TwicePlus(digit < 0 ? subP : addP);
|
|
R = R.TimesPow2(zeroes);
|
|
}
|
|
|
|
return R;
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|