All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.open.jwtdependency.org.bouncycastle.math.ec.ZSignedDigitR2LMultiplier Maven / Gradle / Ivy

Go to download

This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).

The newest version!
package org.bouncycastle.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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy