Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ZSignedDigitR2LMultiplier.java « ec « math « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9147ea7d3816d9b9a32a9cee98e1b0a7a25f679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.spongycastle.math.ec;

import java.math.BigInteger;

public class ZSignedDigitR2LMultiplier extends AbstractECMultiplier
{
    /**
     * 'Zeroless' Signed Digit Right-to-Left.
     */
    protected ECPoint multiplyPositive(ECPoint p, BigInteger k)
    {
        ECPoint R0 = p.getCurve().getInfinity(), R1 = p;

        int n = k.bitLength();
        int s = k.getLowestSetBit();

        R1 = R1.timesPow2(s);

        int i = s;
        while (++i < n)
        {
            R0 = R0.add(k.testBit(i) ? R1 : R1.negate());
            R1 = R1.twice();
        }

        R0 = R0.add(R1);

        return R0;
    }
}