Beispiel #1
0
        /*
         * It requires that all parameters be positive.
         *
         * @return {@code base<sup>exponent</sup> mod (2<sup>j</sup>)}.
         * @see BigInteger#modPow(BigInteger, BigInteger)
         */
        internal static BigInteger pow2ModPow(BigInteger baseJ, BigInteger exponent, int j)
        {
            // PRE: (base > 0), (exponent > 0) and (j > 0)
            BigInteger res         = BigInteger.ONE;
            BigInteger e           = exponent.copy();
            BigInteger baseMod2toN = baseJ.copy();
            BigInteger res2;

            /*
             * If 'base' is odd then it's coprime with 2^j and phi(2^j) = 2^(j-1);
             * so we can reduce reduce the exponent (mod 2^(j-1)).
             */
            if (baseJ.testBit(0))
            {
                inplaceModPow2(e, j - 1);
            }
            inplaceModPow2(baseMod2toN, j);

            for (int i = e.bitLength() - 1; i >= 0; i--)
            {
                res2 = res.copy();
                inplaceModPow2(res2, j);
                res = res.multiply(res2);
                if (BitLevel.testBit(e, i))
                {
                    res = res.multiply(baseMod2toN);
                    inplaceModPow2(res, j);
                }
            }
            inplaceModPow2(res, j);
            return(res);
        }
Beispiel #2
0
        /*Implements the Montgomery modular exponentiation based in <i>The sliding windows algorithm and the Mongomery
         * Reduction</i>.
         *@ar.org.fitc.ref "A. Menezes,P. van Oorschot, S. Vanstone - Handbook of Applied Cryptography";
         *@see #oddModPow(BigInteger, BigInteger,
         *                           BigInteger)
         */
        internal static BigInteger slidingWindow(BigInteger x2, BigInteger a2, BigInteger exponent, BigInteger modulus, int n2)
        {
            // fill odd low pows of a2
            BigInteger [] pows = new BigInteger[8];
            BigInteger    res  = x2;
            int           lowexp;
            BigInteger    x3;
            int           acc3;

            pows[0] = a2;

            x3 = monPro(a2, a2, modulus, n2);
            for (int i = 1; i <= 7; i++)
            {
                pows[i] = monPro(pows[i - 1], x3, modulus, n2);
            }

            for (int i = exponent.bitLength() - 1; i >= 0; i--)
            {
                if (BitLevel.testBit(exponent, i))
                {
                    lowexp = 1;
                    acc3   = i;

                    for (int j = java.lang.Math.max(i - 3, 0); j <= i - 1; j++)
                    {
                        if (BitLevel.testBit(exponent, j))
                        {
                            if (j < acc3)
                            {
                                acc3   = j;
                                lowexp = (lowexp << (i - j)) ^ 1;
                            }
                            else
                            {
                                lowexp = lowexp ^ (1 << (j - acc3));
                            }
                        }
                    }

                    for (int j = acc3; j <= i; j++)
                    {
                        res = monPro(res, res, modulus, n2);
                    }
                    res = monPro(pows[(lowexp - 1) >> 1], res, modulus, n2);
                    i   = acc3;
                }
                else
                {
                    res = monPro(res, res, modulus, n2);
                }
            }
            return(res);
        }
Beispiel #3
0
        internal static BigInteger squareAndMultiply(BigInteger x2, BigInteger a2, BigInteger exponent, BigInteger modulus, int n2)
        {
            BigInteger res = x2;

            for (int i = exponent.bitLength() - 1; i >= 0; i--)
            {
                res = monPro(res, res, modulus, n2);
                if (BitLevel.testBit(exponent, i))
                {
                    res = monPro(res, a2, modulus, n2);
                }
            }
            return(res);
        }
Beispiel #4
0
        /*
         * @param x an odd positive number.
         * @param n the exponent by which 2 is raised.
         * @return {@code x<sup>-1</sup> (mod 2<sup>n</sup>)}.
         */
        internal static BigInteger modPow2Inverse(BigInteger x, int n)
        {
            // PRE: (x > 0), (x is odd), and (n > 0)
            BigInteger y = new BigInteger(1, new int[1 << n]);

            y.numberLength = 1;
            y.digits[0]    = 1;
            y.sign         = 1;

            for (int i = 1; i < n; i++)
            {
                if (BitLevel.testBit(x.multiply(y), i))
                {
                    // Adding 2^i to y (setting the i-th bit)
                    y.digits[i >> 5] |= (1 << (i & 31));
                }
            }
            return(y);
        }