You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
860 B
33 lines
860 B
using System;
|
|
|
|
namespace Org.BouncyCastle.Math.EC.Multiplier
|
|
{
|
|
/**
|
|
* Class implementing the NAF (Non-Adjacent Form) multiplication algorithm (left-to-right).
|
|
*/
|
|
[Obsolete("Will be removed")]
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|