Example #1
0
        public HKeyExchange(int e, string n, string d, int bitSize = 16)
        {
            _bitSize = bitSize;
            IsInitiator = !string.IsNullOrWhiteSpace(d);

            Rsa = IsInitiator
                ? RsaKey.ParsePrivateKey(e, n, d)
                : RsaKey.ParsePublicKey(e, n);

            if (IsInitiator)
            {
                do { DhPrime = BigInteger.GenPseudoPrime(212, 6, _byteGen); }
                while (!DhPrime.IsProbablePrime());

                do { DhGenerator = BigInteger.GenPseudoPrime(212, 6, _byteGen); }
                while (DhGenerator >= DhPrime && !DhPrime.IsProbablePrime());

                if (DhGenerator > DhPrime)
                {
                    BigInteger dhGenShell = DhGenerator;
                    DhGenerator = DhPrime;
                    DhPrime = dhGenShell;
                }

                DhPrivate = new BigInteger(RandomHex(30), bitSize);
                DhPublic = DhGenerator.ModPow(DhPrivate, DhPrime);
            }
        }
Example #2
0
        private static void MultipleByteDivide(BigInteger inDividend, BigInteger inDivisor, BigInteger outQuotient, BigInteger outRemainder)
        {
            uint[] result = new uint[MAX_LENGTH];

            int remainderLen = inDividend.DataLength + 1;
            uint[] remainder = new uint[remainderLen];

            uint mask = 0x80000000;
            uint val = inDivisor._data[inDivisor.DataLength - 1];
            int shift = 0, resultPos = 0;

            while (mask != 0 && (val & mask) == 0)
            {
                shift++; mask >>= 1;
            }

            for (int i = 0; i < inDividend.DataLength; i++)
                remainder[i] = inDividend._data[i];
            ShiftLeft(remainder, shift);
            inDivisor = inDivisor << shift;

            int j = remainderLen - inDivisor.DataLength;
            int pos = remainderLen - 1;

            ulong firstDivisorByte = inDivisor._data[inDivisor.DataLength - 1];
            ulong secondDivisorByte = inDivisor._data[inDivisor.DataLength - 2];

            int divisorLen = inDivisor.DataLength + 1;
            uint[] dividendPart = new uint[divisorLen];

            while (j > 0)
            {
                ulong dividend = ((ulong)remainder[pos] << 32) + (ulong)remainder[pos - 1];

                ulong q_hat = dividend / firstDivisorByte;
                ulong r_hat = dividend % firstDivisorByte;

                bool done = false;
                while (!done)
                {
                    done = true;

                    if (q_hat == 0x100000000 ||
                       (q_hat * secondDivisorByte) > ((r_hat << 32) + remainder[pos - 2]))
                    {
                        q_hat--;
                        r_hat += firstDivisorByte;

                        if (r_hat < 0x100000000)
                            done = false;
                    }
                }

                for (int h = 0; h < divisorLen; h++)
                    dividendPart[h] = remainder[pos - h];

                BigInteger kk = new BigInteger(dividendPart);
                BigInteger ss = inDivisor * (long)q_hat;

                while (ss > kk)
                {
                    q_hat--;
                    ss -= inDivisor;
                }
                BigInteger yy = kk - ss;

                for (int h = 0; h < divisorLen; h++)
                    remainder[pos - h] = yy._data[inDivisor.DataLength - h];

                result[resultPos++] = (uint)q_hat;
                pos--;
                j--;
            }

            outQuotient.DataLength = resultPos;
            int y = 0;
            for (int x = outQuotient.DataLength - 1; x >= 0; x--, y++)
                outQuotient._data[y] = result[x];
            for (; y < MAX_LENGTH; y++)
                outQuotient._data[y] = 0;

            while (outQuotient.DataLength > 1 && outQuotient._data[outQuotient.DataLength - 1] == 0)
                outQuotient.DataLength--;

            if (outQuotient.DataLength == 0)
                outQuotient.DataLength = 1;

            outRemainder.DataLength = ShiftRight(remainder, shift);

            for (y = 0; y < outRemainder.DataLength; y++)
                outRemainder._data[y] = remainder[y];
            for (; y < MAX_LENGTH; y++)
                outRemainder._data[y] = 0;
        }
Example #3
0
        public void DoHandshake(string signedPrime, string signedGenerator)
        {
            if (IsInitiator) return;

            byte[] signedPrimeAsBytes = HexToBytes(signedPrime);
            Rsa.Verify(ref signedPrimeAsBytes);

            byte[] signedGeneratorAsBytes = HexToBytes(signedGenerator);
            Rsa.Verify(ref signedGeneratorAsBytes);

            DhPrime = new BigInteger(Encoding.Default.GetString(signedPrimeAsBytes), 10);
            DhGenerator = new BigInteger(Encoding.Default.GetString(signedGeneratorAsBytes), 10);

            if (DhPrime <= 2)
                throw new Exception("Prime cannot be <= 2!\nPrime: " + DhPrime);

            if (DhGenerator >= DhPrime)
                throw new Exception($"Generator cannot be >= Prime!\nPrime: {DhPrime}\nGenerator: {DhGenerator}");

            DhPrivate = new BigInteger(RandomHex(30), _bitSize);
            DhPublic = DhGenerator.ModPow(DhPrivate, DhPrime);
        }
Example #4
0
        public byte[] GetSharedKey(string publicKey)
        {
            if (!IsBannerHandshake)
            {
                byte[] paddedPublicKeyAsBytes = HexToBytes(publicKey);
                if (IsInitiator) Rsa.Decrypt(ref paddedPublicKeyAsBytes);
                else Rsa.Verify(ref paddedPublicKeyAsBytes);

                publicKey = Encoding.Default.GetString(paddedPublicKeyAsBytes);
            }

            var unpaddedPublicKey = new BigInteger(publicKey, 10);
            return unpaddedPublicKey.ModPow(DhPrivate, DhPrime).ToBytes();
        }
Example #5
0
        private bool LucasStrongTestHelper(BigInteger thisVal)
        {
            long D = 5, sign = -1, dCount = 0;
            bool done = false;

            while (!done)
            {
                int Jresult = Jacobi(D, thisVal);

                if (Jresult == -1)
                    done = true;
                else
                {
                    if (Jresult == 0 && Math.Abs(D) < thisVal)
                        return false;

                    if (dCount == 20)
                    {
                        BigInteger root = thisVal.Sqrt();
                        if (root * root == thisVal)
                            return false;
                    }
                    D = (Math.Abs(D) + 2) * sign;
                    sign = -sign;
                }
                dCount++;
            }

            long Q = (1 - D) >> 2;

            BigInteger p_add1 = thisVal + 1;
            int s = 0;

            for (int index = 0; index < p_add1.DataLength; index++)
            {
                uint mask = 0x01;

                for (int i = 0; i < 32; i++)
                {
                    if ((p_add1._data[index] & mask) != 0)
                    {
                        index = p_add1.DataLength;
                        break;
                    }
                    mask <<= 1;
                    s++;
                }
            }

            BigInteger t = p_add1 >> s;

            BigInteger constant = new BigInteger();

            int nLen = thisVal.DataLength << 1;
            constant._data[nLen] = 0x00000001;
            constant.DataLength = nLen + 1;

            constant = constant / thisVal;

            BigInteger[] lucas = LucasSequenceHelper(1, Q, t, thisVal, constant, 0);
            bool isPrime = false;

            if ((lucas[0].DataLength == 1 && lucas[0]._data[0] == 0) ||
               (lucas[1].DataLength == 1 && lucas[1]._data[0] == 0))
            {
                isPrime = true;
            }

            for (int i = 1; i < s; i++)
            {
                if (!isPrime)
                {
                    lucas[1] = thisVal.BarrettReduction(lucas[1] * lucas[1], thisVal, constant);
                    lucas[1] = (lucas[1] - (lucas[2] << 1)) % thisVal;

                    lucas[1] = ((lucas[1] * lucas[1]) - (lucas[2] << 1)) % thisVal;

                    if ((lucas[1].DataLength == 1 && lucas[1]._data[0] == 0))
                        isPrime = true;
                }

                lucas[2] = thisVal.BarrettReduction(lucas[2] * lucas[2], thisVal, constant);
            }


            if (isPrime)
            {
                BigInteger g = thisVal.Gcd(Q);
                if (g.DataLength == 1 && g._data[0] == 1)
                {
                    if ((lucas[2]._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                        lucas[2] += thisVal;

                    BigInteger temp = (Q * BigInteger.Jacobi(Q, thisVal)) % thisVal;
                    if ((temp._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                        temp += thisVal;

                    if (lucas[2] != temp)
                        isPrime = false;
                }
            }

            return isPrime;
        }
Example #6
0
        public static BigInteger operator <<(BigInteger instance, int shift)
        {
            BigInteger result = new BigInteger(instance);
            result.DataLength = ShiftLeft(result._data, shift);

            return result;
        }
Example #7
0
        public static BigInteger operator -(BigInteger left, BigInteger right)
        {
            BigInteger result = new BigInteger();

            result.DataLength = (left.DataLength > right.DataLength) ? left.DataLength : right.DataLength;

            long carryIn = 0;
            for (int i = 0; i < result.DataLength; i++)
            {
                long diff;

                diff = (long)left._data[i] - (long)right._data[i] - carryIn;
                result._data[i] = (uint)(diff & 0xFFFFFFFF);

                if (diff < 0)
                    carryIn = 1;
                else
                    carryIn = 0;
            }

            if (carryIn != 0)
            {
                for (int i = result.DataLength; i < MAX_LENGTH; i++)
                    result._data[i] = 0xFFFFFFFF;
                result.DataLength = MAX_LENGTH;
            }

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            int lastPos = MAX_LENGTH - 1;
            if ((left._data[lastPos] & 0x80000000) != (right._data[lastPos] & 0x80000000) &&
               (result._data[lastPos] & 0x80000000) != (left._data[lastPos] & 0x80000000))
            {
                throw (new ArithmeticException());
            }

            return result;
        }
Example #8
0
        public static BigInteger operator ^(BigInteger left, BigInteger right)
        {
            BigInteger result = new BigInteger();
            int len = (left.DataLength > right.DataLength) ? left.DataLength : right.DataLength;

            for (int i = 0; i < len; i++)
            {
                uint sum = (uint)(left._data[i] ^ right._data[i]);
                result._data[i] = sum;
            }

            result.DataLength = MAX_LENGTH;

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            return result;
        }
Example #9
0
        /// <summary>
        /// Probabilistic prime test based on Rabin-Miller's test.
        /// </summary>
        /// <param name="confidence">The amount of times/iterations to check the primality of the current instance.</param>
        /// <returns>true if the current instance is a strong pseudo-prime to randomly chosen bases, otherwise false if not prime.</returns>
        public bool RabinMillerTest(int confidence)
        {
            BigInteger thisVal;
            if ((_data[MAX_LENGTH - 1] & 0x80000000) != 0)
                thisVal = -this;
            else
                thisVal = this;

            if (thisVal.DataLength == 1)
            {
                if (thisVal._data[0] == 0 || thisVal._data[0] == 1)
                    return false;
                else if (thisVal._data[0] == 2 || thisVal._data[0] == 3)
                    return true;
            }

            if ((thisVal._data[0] & 0x1) == 0)
                return false;

            BigInteger p_sub1 = thisVal - (new BigInteger(1));
            int s = 0;

            for (int index = 0; index < p_sub1.DataLength; index++)
            {
                uint mask = 0x01;

                for (int i = 0; i < 32; i++)
                {
                    if ((p_sub1._data[index] & mask) != 0)
                    {
                        index = p_sub1.DataLength;
                        break;
                    }
                    mask <<= 1;
                    s++;
                }
            }

            BigInteger t = p_sub1 >> s;

            int bits = thisVal.BitCount();
            BigInteger a = new BigInteger();
            Random rand = new Random();

            for (int round = 0; round < confidence; round++)
            {
                bool done = false;

                while (!done)
                {
                    int testBits = 0;

                    while (testBits < 2)
                        testBits = (int)(rand.NextDouble() * bits);

                    a.GenRandomBits(testBits, rand);

                    int byteLen = a.DataLength;

                    if (byteLen > 1 || (byteLen == 1 && a._data[0] != 1))
                        done = true;
                }

                BigInteger gcdTest = a.Gcd(thisVal);
                if (gcdTest.DataLength == 1 && gcdTest._data[0] != 1)
                    return false;

                BigInteger b = a.ModPow(t, thisVal);

                bool result = false;

                if (b.DataLength == 1 && b._data[0] == 1)
                    result = true;

                for (int j = 0; result == false && j < s; j++)
                {
                    if (b == p_sub1)
                    {
                        result = true;
                        break;
                    }

                    b = (b * b) % thisVal;
                }

                if (result == false)
                    return false;
            }
            return true;
        }
Example #10
0
        /// <summary>
        /// Initializes a new instance of the BigInteger class.
        /// </summary>
        /// <param name="value">The string value to initialize the instance with the provided base.</param>
        /// <param name="radix">The int value that dictates the base of the provided System.String.</param>
        public BigInteger(string value, int radix)
        {
            BigInteger multiplier = new BigInteger(1);
            BigInteger result = new BigInteger();
            value = (value.ToUpper()).Trim();
            int limit = 0;

            if (value[0] == '-')
                limit = 1;

            for (int i = value.Length - 1; i >= limit; i--)
            {
                int posVal = (int)value[i];

                if (posVal >= '0' && posVal <= '9')
                    posVal -= '0';
                else if (posVal >= 'A' && posVal <= 'Z')
                    posVal = (posVal - 'A') + 10;
                else
                    posVal = 9999999;


                if (posVal >= radix)
                    throw (new ArithmeticException("Invalid string in constructor."));
                else
                {
                    if (value[0] == '-')
                        posVal = -posVal;

                    result = result + (multiplier * posVal);

                    if ((i - 1) >= limit)
                        multiplier = multiplier * radix;
                }
            }

            if (value[0] == '-')
            {
                if ((result._data[MAX_LENGTH - 1] & 0x80000000) == 0)
                    throw (new ArithmeticException("Negative underflow in constructor."));
            }
            else
            {
                if ((result._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                    throw (new ArithmeticException("Positive overflow in constructor."));
            }

            _data = new uint[MAX_LENGTH];
            for (int i = 0; i < result.DataLength; i++)
                _data[i] = result._data[i];

            DataLength = result.DataLength;
        }
Example #11
0
        /// <summary>
        /// Returns the greatest common denominator against the specified BigInteger instance.
        /// </summary>
        /// <param name="bi">The BigInteger instance to use with the current instance.</param>
        /// <returns></returns>
        public BigInteger Gcd(BigInteger bi)
        {
            BigInteger x, y;

            if ((_data[MAX_LENGTH - 1] & 0x80000000) != 0)
                x = -this;
            else
                x = this;

            if ((bi._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                y = -bi;
            else
                y = bi;

            BigInteger g = y;

            while (x.DataLength > 1 || (x.DataLength == 1 && x._data[0] != 0))
            {
                g = x;
                x = y % x;
                y = g;
            }

            return g;
        }
Example #12
0
        /// <summary>
        /// Fast calculation of modular reduction using Barrett's reduction.
        /// </summary>
        /// <param name="x"></param>
        /// <param name="n"></param>
        /// <param name="constant"></param>
        /// <returns></returns>
        private BigInteger BarrettReduction(BigInteger x, BigInteger n, BigInteger constant)
        {
            int k = n.DataLength,
                kPlusOne = k + 1,
                kMinusOne = k - 1;

            BigInteger q1 = new BigInteger();

            for (int i = kMinusOne, j = 0; i < x.DataLength; i++, j++)
                q1._data[j] = x._data[i];
            q1.DataLength = x.DataLength - kMinusOne;
            if (q1.DataLength <= 0)
                q1.DataLength = 1;


            BigInteger q2 = q1 * constant;
            BigInteger q3 = new BigInteger();

            for (int i = kPlusOne, j = 0; i < q2.DataLength; i++, j++)
                q3._data[j] = q2._data[i];
            q3.DataLength = q2.DataLength - kPlusOne;
            if (q3.DataLength <= 0)
                q3.DataLength = 1;

            BigInteger r1 = new BigInteger();
            int lengthToCopy = (x.DataLength > kPlusOne) ? kPlusOne : x.DataLength;
            for (int i = 0; i < lengthToCopy; i++)
                r1._data[i] = x._data[i];
            r1.DataLength = lengthToCopy;

            BigInteger r2 = new BigInteger();
            for (int i = 0; i < q3.DataLength; i++)
            {
                if (q3._data[i] == 0) continue;

                ulong mcarry = 0;
                int t = i;
                for (int j = 0; j < n.DataLength && t < kPlusOne; j++, t++)
                {
                    ulong val = ((ulong)q3._data[i] * (ulong)n._data[j]) +
                                 (ulong)r2._data[t] + mcarry;

                    r2._data[t] = (uint)(val & 0xFFFFFFFF);
                    mcarry = (val >> 32);
                }

                if (t < kPlusOne)
                    r2._data[t] = (uint)mcarry;
            }
            r2.DataLength = kPlusOne;
            while (r2.DataLength > 1 && r2._data[r2.DataLength - 1] == 0)
                r2.DataLength--;

            r1 -= r2;
            if ((r1._data[MAX_LENGTH - 1] & 0x80000000) != 0)
            {
                BigInteger val = new BigInteger();
                val._data[kPlusOne] = 0x00000001;
                val.DataLength = kPlusOne + 1;
                r1 += val;
            }

            while (r1 >= n)
                r1 -= n;

            return r1;
        }
Example #13
0
        /// <summary>
        /// Initializes a new instance of the BigInteger class.
        /// </summary>
        /// <param name="bigInteger">The BigInteger value to initialize the instance with.</param>
        public BigInteger(BigInteger bigInteger)
        {
            _data = new uint[MAX_LENGTH];

            DataLength = bigInteger.DataLength;

            for (int i = 0; i < DataLength; i++)
                _data[i] = bigInteger._data[i];
        }
Example #14
0
        /// <summary>
        /// Modulo Exponentiation.
        /// </summary>
        /// <param name="exponent"></param>
        /// <param name="modulus"></param>
        /// <returns></returns>
        public BigInteger ModPow(BigInteger exponent, BigInteger modulus)
        {
            if ((exponent._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                throw (new ArithmeticException("Positive exponents only."));

            BigInteger resultNum = 1;
            BigInteger tempNum;
            bool thisNegative = false;

            if ((_data[MAX_LENGTH - 1] & 0x80000000) != 0)
            {
                tempNum = -this % modulus;
                thisNegative = true;
            }
            else
                tempNum = this % modulus;

            if ((modulus._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                modulus = -modulus;

            BigInteger constant = new BigInteger();

            int i = modulus.DataLength << 1;
            constant._data[i] = 0x00000001;
            constant.DataLength = i + 1;

            constant = constant / modulus;
            int totalBits = exponent.BitCount();
            int count = 0;

            for (int pos = 0; pos < exponent.DataLength; pos++)
            {
                uint mask = 0x01;

                for (int index = 0; index < 32; index++)
                {
                    if ((exponent._data[pos] & mask) != 0)
                        resultNum = BarrettReduction(resultNum * tempNum, modulus, constant);

                    mask <<= 1;

                    tempNum = BarrettReduction(tempNum * tempNum, modulus, constant);


                    if (tempNum.DataLength == 1 && tempNum._data[0] == 1)
                    {
                        if (thisNegative && (exponent._data[0] & 0x1) != 0)
                            return -resultNum;
                        return resultNum;
                    }
                    count++;
                    if (count == totalBits)
                        break;
                }
            }

            if (thisNegative && (exponent._data[0] & 0x1) != 0)    //odd exp
                return -resultNum;

            return resultNum;
        }
Example #15
0
        /// <summary>
        /// Returns a string that represents the current object in the specified base.
        /// </summary>
        /// <param name="radix">The base type of the string representation of the current object.</param>
        /// <returns>A string that represents the current object in the specified base.</returns>
        public string ToString(int radix)
        {
            if (radix < 2 || radix > 36)
                throw (new ArgumentException("Radix must be >= 2 and <= 36"));

            string charSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
            string result = "";

            BigInteger a = this;

            bool negative = false;
            if ((a._data[MAX_LENGTH - 1] & 0x80000000) != 0)
            {
                negative = true;
                try
                {
                    a = -a;
                }
                catch (Exception) { }
            }

            BigInteger quotient = new BigInteger();
            BigInteger remainder = new BigInteger();
            BigInteger biRadix = new BigInteger(radix);

            if (a.DataLength == 1 && a._data[0] == 0)
                result = "0";
            else
            {
                while (a.DataLength > 1 || (a.DataLength == 1 && a._data[0] != 0))
                {
                    SingleByteDivide(a, biRadix, quotient, remainder);

                    if (remainder._data[0] < 10)
                        result = remainder._data[0] + result;
                    else
                        result = charSet[(int)remainder._data[0] - 10] + result;

                    a = quotient;
                }
                if (negative)
                    result = "-" + result;
            }

            return result;
        }
Example #16
0
        public static BigInteger operator -(BigInteger instance)
        {
            if (instance.DataLength == 1 && instance._data[0] == 0)
                return (new BigInteger());

            BigInteger result = new BigInteger(instance);

            for (int i = 0; i < MAX_LENGTH; i++)
                result._data[i] = (uint)(~(instance._data[i]));

            long val, carry = 1;
            int index = 0;

            while (carry != 0 && index < MAX_LENGTH)
            {
                val = (long)(result._data[index]);
                val++;

                result._data[index] = (uint)(val & 0xFFFFFFFF);
                carry = val >> 32;

                index++;
            }

            if ((instance._data[MAX_LENGTH - 1] & 0x80000000) == (result._data[MAX_LENGTH - 1] & 0x80000000))
                throw (new ArithmeticException("Overflow in negation.\n"));

            result.DataLength = MAX_LENGTH;

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;
            return result;
        }
Example #17
0
        public static BigInteger operator %(BigInteger left, BigInteger right)
        {
            BigInteger quotient = new BigInteger();
            BigInteger remainder = new BigInteger(left);

            int lastPos = MAX_LENGTH - 1;
            bool dividendNeg = false;

            if ((left._data[lastPos] & 0x80000000) != 0)
            {
                left = -left;
                dividendNeg = true;
            }
            if ((right._data[lastPos] & 0x80000000) != 0)
                right = -right;

            if (left < right)
            {
                return remainder;
            }

            else
            {
                if (right.DataLength == 1)
                    SingleByteDivide(left, right, quotient, remainder);
                else
                    MultipleByteDivide(left, right, quotient, remainder);

                if (dividendNeg)
                    return -remainder;

                return remainder;
            }
        }
Example #18
0
        /// <summary>
        /// Returns the Jacobi symbol for the provided BigInteger values.
        /// </summary>
        /// <param name="a">The BigInteger value to use with the calculation.</param>
        /// <param name="b">The BigInteger value to use with the calculation.</param>
        /// <returns></returns>
        public static int Jacobi(BigInteger a, BigInteger b)
        {
            if ((b._data[0] & 0x1) == 0)
                throw (new ArgumentException("Jacobi defined only for odd integers."));

            if (a >= b) a %= b;
            if (a.DataLength == 1 && a._data[0] == 0) return 0;
            if (a.DataLength == 1 && a._data[0] == 1) return 1;

            if (a < 0)
            {
                if ((((b - 1)._data[0]) & 0x2) == 0)
                    return Jacobi(-a, b);
                else
                    return -Jacobi(-a, b);
            }

            int e = 0;
            for (int index = 0; index < a.DataLength; index++)
            {
                uint mask = 0x01;

                for (int i = 0; i < 32; i++)
                {
                    if ((a._data[index] & mask) != 0)
                    {
                        index = a.DataLength;
                        break;
                    }
                    mask <<= 1;
                    e++;
                }
            }

            BigInteger a1 = a >> e;

            int s = 1;
            if ((e & 0x1) != 0 && ((b._data[0] & 0x7) == 3 || (b._data[0] & 0x7) == 5))
                s = -1;

            if ((b._data[0] & 0x3) == 3 && (a1._data[0] & 0x3) == 3)
                s = -s;

            if (a1.DataLength == 1 && a1._data[0] == 1)
                return s;
            else
                return (s * Jacobi(b % a1, a1));
        }
Example #19
0
        public static BigInteger operator +(BigInteger left, BigInteger right)
        {
            BigInteger result = new BigInteger();

            result.DataLength = (left.DataLength > right.DataLength) ? left.DataLength : right.DataLength;

            long carry = 0;
            for (int i = 0; i < result.DataLength; i++)
            {
                long sum = (long)left._data[i] + (long)right._data[i] + carry;
                carry = sum >> 32;
                result._data[i] = (uint)(sum & 0xFFFFFFFF);
            }

            if (carry != 0 && result.DataLength < MAX_LENGTH)
            {
                result._data[result.DataLength] = (uint)(carry);
                result.DataLength++;
            }

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            int lastPos = MAX_LENGTH - 1;
            if ((left._data[lastPos] & 0x80000000) == (right._data[lastPos] & 0x80000000) &&
               (result._data[lastPos] & 0x80000000) != (left._data[lastPos] & 0x80000000))
            {
                throw (new ArithmeticException());
            }

            return result;
        }
Example #20
0
        /// <summary>
        /// Returns a positive BigInteger that is probably prime.
        /// </summary>
        /// <param name="bits">The bit size of the number you wish to generate.</param>
        /// <param name="confidence">The amount of times/iterations to check the primality of the generated number.</param>
        /// <param name="rand">The System.Random instance to extract pseudo values to contribute to the probable prime number.</param>
        /// <returns></returns>
        public static BigInteger GenPseudoPrime(int bits, int confidence, Random rand)
        {
            BigInteger result = new BigInteger();
            bool done = false;

            while (!done)
            {
                result.GenRandomBits(bits, rand);
                result._data[0] |= 0x01;
                done = result.IsProbablePrime(confidence);
            }
            return result;
        }
Example #21
0
        public static BigInteger operator *(BigInteger left, BigInteger right)
        {
            int lastPos = MAX_LENGTH - 1;
            bool bi1Neg = false, bi2Neg = false;

            try
            {
                if ((left._data[lastPos] & 0x80000000) != 0)
                {
                    bi1Neg = true; left = -left;
                }
                if ((right._data[lastPos] & 0x80000000) != 0)
                {
                    bi2Neg = true; right = -right;
                }
            }
            catch (Exception) { }

            BigInteger result = new BigInteger();

            try
            {
                for (int i = 0; i < left.DataLength; i++)
                {
                    if (left._data[i] == 0) continue;

                    ulong mcarry = 0;
                    for (int j = 0, k = i; j < right.DataLength; j++, k++)
                    {
                        ulong val = ((ulong)left._data[i] * (ulong)right._data[j]) +
                                     (ulong)result._data[k] + mcarry;

                        result._data[k] = (uint)(val & 0xFFFFFFFF);
                        mcarry = (val >> 32);
                    }

                    if (mcarry != 0)
                        result._data[i + right.DataLength] = (uint)mcarry;
                }
            }
            catch (Exception)
            {
                throw (new ArithmeticException("Multiplication overflow."));
            }


            result.DataLength = left.DataLength + right.DataLength;
            if (result.DataLength > MAX_LENGTH)
                result.DataLength = MAX_LENGTH;

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            if ((result._data[lastPos] & 0x80000000) != 0)
            {
                if (bi1Neg != bi2Neg && result._data[lastPos] == 0x80000000)
                {
                    if (result.DataLength == 1)
                        return result;
                    else
                    {
                        bool isMaxNeg = true;
                        for (int i = 0; i < result.DataLength - 1 && isMaxNeg; i++)
                        {
                            if (result._data[i] != 0)
                                isMaxNeg = false;
                        }

                        if (isMaxNeg)
                            return result;
                    }
                }

                throw (new ArithmeticException("Multiplication overflow."));
            }

            if (bi1Neg != bi2Neg)
                return -result;

            return result;
        }
Example #22
0
        /// <summary>
        /// Returns the modulo inverse of the current instance against the provided modulus parameter.
        /// </summary>
        /// <param name="modulus">The modulus needed for the calculation.</param>
        /// <returns></returns>
        public BigInteger ModInverse(BigInteger modulus)
        {
            BigInteger[] p = { 0, 1 };
            BigInteger[] q = new BigInteger[2];
            BigInteger[] r = { 0, 0 };

            int step = 0;

            BigInteger a = modulus;
            BigInteger b = this;

            while (b.DataLength > 1 || (b.DataLength == 1 && b._data[0] != 0))
            {
                BigInteger quotient = new BigInteger();
                BigInteger remainder = new BigInteger();

                if (step > 1)
                {
                    BigInteger pval = (p[0] - (p[1] * q[0])) % modulus;
                    p[0] = p[1];
                    p[1] = pval;
                }

                if (b.DataLength == 1)
                    SingleByteDivide(a, b, quotient, remainder);
                else
                    MultipleByteDivide(a, b, quotient, remainder);

                q[0] = q[1];
                r[0] = r[1];
                q[1] = quotient; r[1] = remainder;

                a = b;
                b = remainder;

                step++;
            }

            if (r[0].DataLength > 1 || (r[0].DataLength == 1 && r[0]._data[0] != 1))
                throw (new ArithmeticException("No inverse!"));

            BigInteger result = ((p[0] - (p[1] * q[0])) % modulus);

            if ((result._data[MAX_LENGTH - 1] & 0x80000000) != 0)
                result += modulus;

            return result;
        }
Example #23
0
        public static BigInteger operator >>(BigInteger instance, int shift)
        {
            BigInteger result = new BigInteger(instance);
            result.DataLength = ShiftRight(result._data, shift);


            if ((instance._data[MAX_LENGTH - 1] & 0x80000000) != 0)
            {
                for (int i = MAX_LENGTH - 1; i >= result.DataLength; i--)
                    result._data[i] = 0xFFFFFFFF;

                uint mask = 0x80000000;
                for (int i = 0; i < 32; i++)
                {
                    if ((result._data[result.DataLength - 1] & mask) != 0)
                        break;

                    result._data[result.DataLength - 1] |= mask;
                    mask >>= 1;
                }
                result.DataLength = MAX_LENGTH;
            }

            return result;
        }
Example #24
0
        /// <summary>
        /// Returns the square root of this instance.
        /// </summary>
        /// <returns>the square root</returns>
        public BigInteger Sqrt()
        {
            uint numBits = (uint)this.BitCount();

            if ((numBits & 0x1) != 0)
                numBits = (numBits >> 1) + 1;
            else
                numBits = (numBits >> 1);

            uint bytePos = numBits >> 5;
            byte bitPos = (byte)(numBits & 0x1F);

            uint mask;

            BigInteger result = new BigInteger();
            if (bitPos == 0)
                mask = 0x80000000;
            else
            {
                mask = (uint)1 << bitPos;
                bytePos++;
            }
            result.DataLength = (int)bytePos;

            for (int i = (int)bytePos - 1; i >= 0; i--)
            {
                while (mask != 0)
                {
                    result._data[i] ^= mask;

                    if ((result * result) > this)
                        result._data[i] ^= mask;

                    mask >>= 1;
                }
                mask = 0x80000000;
            }
            return result;
        }
Example #25
0
        private static void SingleByteDivide(BigInteger bi1, BigInteger bi2, BigInteger outQuotient, BigInteger outRemainder)
        {
            uint[] result = new uint[MAX_LENGTH];
            int resultPos = 0;

            for (int i = 0; i < MAX_LENGTH; i++)
                outRemainder._data[i] = bi1._data[i];
            outRemainder.DataLength = bi1.DataLength;

            while (outRemainder.DataLength > 1 && outRemainder._data[outRemainder.DataLength - 1] == 0)
                outRemainder.DataLength--;

            ulong divisor = (ulong)bi2._data[0];
            int pos = outRemainder.DataLength - 1;
            ulong dividend = (ulong)outRemainder._data[pos];

            if (dividend >= divisor)
            {
                ulong quotient = dividend / divisor;
                result[resultPos++] = (uint)quotient;

                outRemainder._data[pos] = (uint)(dividend % divisor);
            }
            pos--;

            while (pos >= 0)
            {
                dividend = ((ulong)outRemainder._data[pos + 1] << 32) + (ulong)outRemainder._data[pos];
                ulong quotient = dividend / divisor;
                result[resultPos++] = (uint)quotient;

                outRemainder._data[pos + 1] = 0;
                outRemainder._data[pos--] = (uint)(dividend % divisor);
            }

            outQuotient.DataLength = resultPos;
            int j = 0;
            for (int i = outQuotient.DataLength - 1; i >= 0; i--, j++)
                outQuotient._data[j] = result[i];
            for (; j < MAX_LENGTH; j++)
                outQuotient._data[j] = 0;

            while (outQuotient.DataLength > 1 && outQuotient._data[outQuotient.DataLength - 1] == 0)
                outQuotient.DataLength--;

            if (outQuotient.DataLength == 0)
                outQuotient.DataLength = 1;

            while (outRemainder.DataLength > 1 && outRemainder._data[outRemainder.DataLength - 1] == 0)
                outRemainder.DataLength--;
        }
Example #26
0
        public static BigInteger operator --(BigInteger instance)
        {
            BigInteger result = new BigInteger(instance);

            long val;
            bool carryIn = true;
            int index = 0;

            while (carryIn && index < MAX_LENGTH)
            {
                val = (long)(result._data[index]);
                val--;

                result._data[index] = (uint)(val & 0xFFFFFFFF);

                if (val >= 0)
                    carryIn = false;

                index++;
            }

            if (index > result.DataLength)
                result.DataLength = index;

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            int lastPos = MAX_LENGTH - 1;

            if ((instance._data[lastPos] & 0x80000000) != 0 &&
               (result._data[lastPos] & 0x80000000) != (instance._data[lastPos] & 0x80000000))
            {
                throw (new ArithmeticException("Underflow in --."));
            }

            return result;
        }
Example #27
0
        public void DoHandshake(Bitmap banner, string token)
        {
            IsBannerHandshake = true;
            var bannerData = new byte[banner.Width * banner.Height * 4];
            for (int y = 0, i = 0; y < banner.Height; y++)
            {
                for (int x = 0; x < banner.Width; x++)
                {
                    int pixelArgb = banner.GetPixel(x, y).ToArgb();
                    bannerData[i++] = (byte)((pixelArgb >> 24) & 255);
                    bannerData[i++] = (byte)((pixelArgb >> 16) & 255);
                    bannerData[i++] = (byte)((pixelArgb >> 8) & 255);
                    bannerData[i++] = (byte)(pixelArgb & 255);
                }
            }

            string bannerChunk = Xor(Decode(bannerData), token);
            int bannerSize = bannerChunk[0];
            bannerChunk = bannerChunk.Substring(1);
            DhPrime = new BigInteger(bannerChunk.Substring(0, bannerSize), 10);

            bannerChunk = bannerChunk.Substring(bannerSize);
            bannerSize = bannerChunk[0];
            bannerChunk = bannerChunk.Substring(1);
            DhGenerator = new BigInteger(bannerChunk.Substring(0, bannerSize), 10);

            DhPrivate = new BigInteger(RandomHex(30), _bitSize);
            DhPublic = DhGenerator.ModPow(DhPrivate, DhPrime);
        }
Example #28
0
        public static BigInteger operator ++(BigInteger instance)
        {
            BigInteger result = new BigInteger(instance);

            long val, carry = 1;
            int index = 0;

            while (carry != 0 && index < MAX_LENGTH)
            {
                val = (long)(result._data[index]);
                val++;

                result._data[index] = (uint)(val & 0xFFFFFFFF);
                carry = val >> 32;

                index++;
            }

            if (index > result.DataLength)
                result.DataLength = index;
            else
            {
                while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                    result.DataLength--;
            }

            int lastPos = MAX_LENGTH - 1;

            if ((instance._data[lastPos] & 0x80000000) == 0 &&
               (result._data[lastPos] & 0x80000000) != (instance._data[lastPos] & 0x80000000))
            {
                throw (new ArithmeticException("Overflow in ++."));
            }
            return result;
        }
Example #29
0
        public static BigInteger operator ~(BigInteger instance)
        {
            BigInteger result = new BigInteger(instance);

            for (int i = 0; i < MAX_LENGTH; i++)
                result._data[i] = (uint)(~(instance._data[i]));

            result.DataLength = MAX_LENGTH;

            while (result.DataLength > 1 && result._data[result.DataLength - 1] == 0)
                result.DataLength--;

            return result;
        }
Example #30
0
        private static BigInteger[] LucasSequenceHelper(BigInteger P, BigInteger Q, BigInteger k, BigInteger n, BigInteger constant, int s)
        {
            BigInteger[] result = new BigInteger[3];

            if ((k._data[0] & 0x00000001) == 0)
                throw (new ArgumentException("Argument k must be odd."));

            int numbits = k.BitCount();
            uint mask = (uint)0x1 << ((numbits & 0x1F) - 1);

            BigInteger v = 2 % n, Q_k = 1 % n,
                       v1 = P % n, u1 = Q_k;
            bool flag = true;

            for (int i = k.DataLength - 1; i >= 0; i--)
            {
                while (mask != 0)
                {
                    if (i == 0 && mask == 0x00000001)
                        break;

                    if ((k._data[i] & mask) != 0)
                    {
                        u1 = (u1 * v1) % n;

                        v = ((v * v1) - (P * Q_k)) % n;
                        v1 = n.BarrettReduction(v1 * v1, n, constant);
                        v1 = (v1 - ((Q_k * Q) << 1)) % n;

                        if (flag)
                            flag = false;
                        else
                            Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);

                        Q_k = (Q_k * Q) % n;
                    }
                    else
                    {
                        u1 = ((u1 * v) - Q_k) % n;

                        v1 = ((v * v1) - (P * Q_k)) % n;
                        v = n.BarrettReduction(v * v, n, constant);
                        v = (v - (Q_k << 1)) % n;

                        if (flag)
                        {
                            Q_k = Q % n;
                            flag = false;
                        }
                        else
                            Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
                    }

                    mask >>= 1;
                }
                mask = 0x80000000;
            }

            u1 = ((u1 * v) - Q_k) % n;
            v = ((v * v1) - (P * Q_k)) % n;
            if (flag)
                flag = false;
            else
                Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);

            Q_k = (Q_k * Q) % n;


            for (int i = 0; i < s; i++)
            {
                u1 = (u1 * v) % n;
                v = ((v * v) - (Q_k << 1)) % n;

                if (flag)
                {
                    Q_k = Q % n;
                    flag = false;
                }
                else
                    Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
            }

            result[0] = u1;
            result[1] = v;
            result[2] = Q_k;

            return result;
        }