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.
29 lines
942 B
29 lines
942 B
namespace Org.BouncyCastle.Math.EC.Multiplier
|
|
{
|
|
public abstract class AbstractECMultiplier
|
|
: ECMultiplier
|
|
{
|
|
public virtual ECPoint Multiply(ECPoint p, BigInteger k)
|
|
{
|
|
int sign = k.SignValue;
|
|
if (sign == 0 || p.IsInfinity)
|
|
return p.Curve.Infinity;
|
|
|
|
ECPoint positive = MultiplyPositive(p, k.Abs());
|
|
ECPoint result = sign > 0 ? positive : positive.Negate();
|
|
|
|
/*
|
|
* Although the various multipliers ought not to produce invalid output under normal
|
|
* circumstances, a final check here is advised to guard against fault attacks.
|
|
*/
|
|
return CheckResult(result);
|
|
}
|
|
|
|
protected abstract ECPoint MultiplyPositive(ECPoint p, BigInteger k);
|
|
|
|
protected virtual ECPoint CheckResult(ECPoint p)
|
|
{
|
|
return ECAlgorithms.ImplCheckResult(p);
|
|
}
|
|
}
|
|
}
|
|
|