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.
 
 
 
 
 
 

28 lines
700 B

using System;
namespace Org.BouncyCastle.Math.EC.Multiplier
{
[Obsolete("Will be removed")]
public class MontgomeryLadderMultiplier
: AbstractECMultiplier
{
/**
* Montgomery ladder.
*/
protected override ECPoint MultiplyPositive(ECPoint p, BigInteger k)
{
ECPoint[] R = new ECPoint[]{ p.Curve.Infinity, p };
int n = k.BitLength;
int i = n;
while (--i >= 0)
{
int b = k.TestBit(i) ? 1 : 0;
int bp = 1 - b;
R[bp] = R[bp].Add(R[b]);
R[b] = R[b].Twice();
}
return R[0];
}
}
}