BigInteger.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:126k
源码类别:

Telnet服务器

开发平台:

C#

  1. //************************************************************************************
  2. // BigInteger Class Version 1.03
  3. //
  4. // Copyright (c) 2002 Chew Keong TAN
  5. // All rights reserved.
  6. //
  7. // Permission is hereby granted, free of charge, to any person obtaining a
  8. // copy of this software and associated documentation files (the
  9. // "Software"), to deal in the Software without restriction, including
  10. // without limitation the rights to use, copy, modify, merge, publish,
  11. // distribute, and/or sell copies of the Software, and to permit persons
  12. // to whom the Software is furnished to do so, provided that the above
  13. // copyright notice(s) and this permission notice appear in all copies of
  14. // the Software and that both the above copyright notice(s) and this
  15. // permission notice appear in supporting documentation.
  16. //
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  18. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
  20. // OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  21. // HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
  22. // INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
  23. // FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  24. // NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  25. // WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  26. //
  27. //
  28. // Disclaimer
  29. // ----------
  30. // Although reasonable care has been taken to ensure the correctness of this
  31. // implementation, this code should never be used in any application without
  32. // proper verification and testing.  I disclaim all liability and responsibility
  33. // to any person or entity with respect to any loss or damage caused, or alleged
  34. // to be caused, directly or indirectly, by the use of this BigInteger class.
  35. //
  36. // Comments, bugs and suggestions to
  37. // (http://www.codeproject.com/csharp/biginteger.asp)
  38. //
  39. //
  40. // Overloaded Operators +, -, *, /, %, >>, <<, ==, !=, >, <, >=, <=, &, |, ^, ++, --, ~
  41. //
  42. // Features
  43. // --------
  44. // 1) Arithmetic operations involving large signed integers (2's complement).
  45. // 2) Primality test using Fermat little theorm, Rabin Miller's method,
  46. //    Solovay Strassen's method and Lucas strong pseudoprime.
  47. // 3) Modulo exponential with Barrett's reduction.
  48. // 4) Inverse modulo.
  49. // 5) Pseudo prime generation.
  50. // 6) Co-prime generation.
  51. //
  52. //
  53. // Known Problem
  54. // -------------
  55. // This pseudoprime passes my implementation of
  56. // primality test but failed in JDK's isProbablePrime test.
  57. //
  58. //       byte[] pseudoPrime1 = { (byte)0x00,
  59. //             (byte)0x85, (byte)0x84, (byte)0x64, (byte)0xFD, (byte)0x70, (byte)0x6A,
  60. //             (byte)0x9F, (byte)0xF0, (byte)0x94, (byte)0x0C, (byte)0x3E, (byte)0x2C,
  61. //             (byte)0x74, (byte)0x34, (byte)0x05, (byte)0xC9, (byte)0x55, (byte)0xB3,
  62. //             (byte)0x85, (byte)0x32, (byte)0x98, (byte)0x71, (byte)0xF9, (byte)0x41,
  63. //             (byte)0x21, (byte)0x5F, (byte)0x02, (byte)0x9E, (byte)0xEA, (byte)0x56,
  64. //             (byte)0x8D, (byte)0x8C, (byte)0x44, (byte)0xCC, (byte)0xEE, (byte)0xEE,
  65. //             (byte)0x3D, (byte)0x2C, (byte)0x9D, (byte)0x2C, (byte)0x12, (byte)0x41,
  66. //             (byte)0x1E, (byte)0xF1, (byte)0xC5, (byte)0x32, (byte)0xC3, (byte)0xAA,
  67. //             (byte)0x31, (byte)0x4A, (byte)0x52, (byte)0xD8, (byte)0xE8, (byte)0xAF,
  68. //             (byte)0x42, (byte)0xF4, (byte)0x72, (byte)0xA1, (byte)0x2A, (byte)0x0D,
  69. //             (byte)0x97, (byte)0xB1, (byte)0x31, (byte)0xB3,
  70. //       };
  71. //
  72. //
  73. // Change Log
  74. // ----------
  75. // 1) September 23, 2002 (Version 1.03)
  76. //    - Fixed operator- to give correct data length.
  77. //    - Added Lucas sequence generation.
  78. //    - Added Strong Lucas Primality test.
  79. //    - Added integer square root method.
  80. //    - Added setBit/unsetBit methods.
  81. //    - New isProbablePrime() method which do not require the
  82. //      confident parameter.
  83. //
  84. // 2) August 29, 2002 (Version 1.02)
  85. //    - Fixed bug in the exponentiation of negative numbers.
  86. //    - Faster modular exponentiation using Barrett reduction.
  87. //    - Added getBytes() method.
  88. //    - Fixed bug in ToHexString method.
  89. //    - Added overloading of ^ operator.
  90. //    - Faster computation of Jacobi symbol.
  91. //
  92. // 3) August 19, 2002 (Version 1.01)
  93. //    - Big integer is stored and manipulated as unsigned integers (4 bytes) instead of
  94. //      individual bytes this gives significant performance improvement.
  95. //    - Updated Fermat's Little Theorem test to use a^(p-1) mod p = 1
  96. //    - Added isProbablePrime method.
  97. //    - Updated documentation.
  98. //
  99. // 4) August 9, 2002 (Version 1.0)
  100. //    - Initial Release.
  101. //
  102. //
  103. // References
  104. // [1] D. E. Knuth, "Seminumerical Algorithms", The Art of Computer Programming Vol. 2,
  105. //     3rd Edition, Addison-Wesley, 1998.
  106. //
  107. // [2] K. H. Rosen, "Elementary Number Theory and Its Applications", 3rd Ed,
  108. //     Addison-Wesley, 1993.
  109. //
  110. // [3] B. Schneier, "Applied Cryptography", 2nd Ed, John Wiley & Sons, 1996.
  111. //
  112. // [4] A. Menezes, P. van Oorschot, and S. Vanstone, "Handbook of Applied Cryptography",
  113. //     CRC Press, 1996, www.cacr.math.uwaterloo.ca/hac
  114. //
  115. // [5] A. Bosselaers, R. Govaerts, and J. Vandewalle, "Comparison of Three Modular
  116. //     Reduction Functions," Proc. CRYPTO'93, pp.175-186.
  117. //
  118. // [6] R. Baillie and S. S. Wagstaff Jr, "Lucas Pseudoprimes", Mathematics of Computation,
  119. //     Vol. 35, No. 152, Oct 1980, pp. 1391-1417.
  120. //
  121. // [7] H. C. Williams, "蒬ouard Lucas and Primality Testing", Canadian Mathematical
  122. //     Society Series of Monographs and Advance Texts, vol. 22, John Wiley & Sons, New York,
  123. //     NY, 1998.
  124. //
  125. // [8] P. Ribenboim, "The new book of prime number records", 3rd edition, Springer-Verlag,
  126. //     New York, NY, 1995.
  127. //
  128. // [9] M. Joye and J.-J. Quisquater, "Efficient computation of full Lucas sequences",
  129. //     Electronics Letters, 32(6), 1996, pp 537-538.
  130. //
  131. //************************************************************************************
  132. using System;
  133. public class BigInteger
  134. {
  135.         // maximum length of the BigInteger in uint (4 bytes)
  136.         // change this to suit the required level of precision.
  137.         private const int maxLength = 130;
  138.         // primes smaller than 2000 to test the generated prime number
  139.         public static readonly int[] primesBelow2000 = {
  140.         2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97,
  141.         101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199,
  142. 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293,
  143. 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397,
  144. 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499,
  145. 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599,
  146. 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691,
  147. 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797,
  148. 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887,
  149. 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997,
  150. 1009, 1013, 1019, 1021, 1031, 1033, 1039, 1049, 1051, 1061, 1063, 1069, 1087, 1091, 1093, 1097,
  151. 1103, 1109, 1117, 1123, 1129, 1151, 1153, 1163, 1171, 1181, 1187, 1193,
  152. 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259, 1277, 1279, 1283, 1289, 1291, 1297,
  153. 1301, 1303, 1307, 1319, 1321, 1327, 1361, 1367, 1373, 1381, 1399,
  154. 1409, 1423, 1427, 1429, 1433, 1439, 1447, 1451, 1453, 1459, 1471, 1481, 1483, 1487, 1489, 1493, 1499,
  155. 1511, 1523, 1531, 1543, 1549, 1553, 1559, 1567, 1571, 1579, 1583, 1597,
  156. 1601, 1607, 1609, 1613, 1619, 1621, 1627, 1637, 1657, 1663, 1667, 1669, 1693, 1697, 1699,
  157. 1709, 1721, 1723, 1733, 1741, 1747, 1753, 1759, 1777, 1783, 1787, 1789,
  158. 1801, 1811, 1823, 1831, 1847, 1861, 1867, 1871, 1873, 1877, 1879, 1889,
  159. 1901, 1907, 1913, 1931, 1933, 1949, 1951, 1973, 1979, 1987, 1993, 1997, 1999 };
  160.         private uint[] data = null;             // stores bytes from the Big Integer
  161.         public int dataLength;                 // number of actual chars used
  162. public bool IsNegative {
  163. get {
  164. return (data[maxLength - 1] & 0x80000000) != 0;
  165. }
  166. }
  167.         //***********************************************************************
  168.         // Constructor (Default value for BigInteger is 0
  169.         //***********************************************************************
  170.         public BigInteger()
  171.         {
  172.                 data = new uint[maxLength];
  173.                 dataLength = 1;
  174.         }
  175.         //***********************************************************************
  176.         // Constructor (Default value provided by long)
  177.         //***********************************************************************
  178.         public BigInteger(long value)
  179.         {
  180.                 data = new uint[maxLength];
  181.                 long tempVal = value;
  182.                 // copy bytes from long to BigInteger without any assumption of
  183.                 // the length of the long datatype
  184.                 dataLength = 0;
  185.                 while(value != 0 && dataLength < maxLength)
  186.                 {
  187.                         data[dataLength] = (uint)(value & 0xFFFFFFFF);
  188.                         value >>= 32;
  189.                         dataLength++;
  190.                 }
  191.                 if(tempVal > 0)         // overflow check for +ve value
  192.                 {
  193.                         if(value != 0 || (data[maxLength-1] & 0x80000000) != 0)
  194.                                 throw(new ArithmeticException("Positive overflow in constructor."));
  195.                 }
  196.                 else if(tempVal < 0)    // underflow check for -ve value
  197.                 {
  198.                         if(value != -1 || (data[dataLength-1] & 0x80000000) == 0)
  199.                                 throw(new ArithmeticException("Negative underflow in constructor."));
  200.                 }
  201.                 if(dataLength == 0)
  202.                         dataLength = 1;
  203.         }
  204.         //***********************************************************************
  205.         // Constructor (Default value provided by ulong)
  206.         //***********************************************************************
  207.         public BigInteger(ulong value)
  208.         {
  209.                 data = new uint[maxLength];
  210.                 // copy bytes from ulong to BigInteger without any assumption of
  211.                 // the length of the ulong datatype
  212.                 dataLength = 0;
  213.                 while(value != 0 && dataLength < maxLength)
  214.                 {
  215.                         data[dataLength] = (uint)(value & 0xFFFFFFFF);
  216.                         value >>= 32;
  217.                         dataLength++;
  218.                 }
  219.                 if(value != 0 || (data[maxLength-1] & 0x80000000) != 0)
  220.                         throw(new ArithmeticException("Positive overflow in constructor."));
  221.                 if(dataLength == 0)
  222.                         dataLength = 1;
  223.         }
  224.         //***********************************************************************
  225.         // Constructor (Default value provided by BigInteger)
  226.         //***********************************************************************
  227.         public BigInteger(BigInteger bi)
  228.         {
  229.                 data = new uint[maxLength];
  230.                 dataLength = bi.dataLength;
  231.                 for(int i = 0; i < dataLength; i++)
  232.                         data[i] = bi.data[i];
  233.         }
  234.         //***********************************************************************
  235.         // Constructor (Default value provided by a string of digits of the
  236.         //              specified base)
  237.         //
  238.         // Example (base 10)
  239.         // -----------------
  240.         // To initialize "a" with the default value of 1234 in base 10
  241.         //      BigInteger a = new BigInteger("1234", 10)
  242.         //
  243.         // To initialize "a" with the default value of -1234
  244.         //      BigInteger a = new BigInteger("-1234", 10)
  245.         //
  246.         // Example (base 16)
  247.         // -----------------
  248.         // To initialize "a" with the default value of 0x1D4F in base 16
  249.         //      BigInteger a = new BigInteger("1D4F", 16)
  250.         //
  251.         // To initialize "a" with the default value of -0x1D4F
  252.         //      BigInteger a = new BigInteger("-1D4F", 16)
  253.         //
  254.         // Note that string values are specified in the <sign><magnitude>
  255.         // format.
  256.         //
  257.         //***********************************************************************
  258.         public BigInteger(string value, int radix)
  259.         {
  260.                 BigInteger multiplier = new BigInteger(1);
  261.                 BigInteger result = new BigInteger();
  262.                 value = (value.ToUpper()).Trim();
  263.                 int limit = 0;
  264.                 if(value[0] == '-')
  265.                         limit = 1;
  266.                 for(int i = value.Length - 1; i >= limit ; i--)
  267.                 {
  268.                         int posVal = (int)value[i];
  269.                         if(posVal >= '0' && posVal <= '9')
  270.                                 posVal -= '0';
  271.                         else if(posVal >= 'A' && posVal <= 'Z')
  272.                                 posVal = (posVal - 'A') + 10;
  273.                         else
  274.                                 posVal = 9999999;       // arbitrary large
  275.                         if(posVal >= radix)
  276.                                 throw(new ArithmeticException("Invalid string in constructor."));
  277.                         else
  278.                         {
  279.                                 if(value[0] == '-')
  280.                                         posVal = -posVal;
  281.                                 result = result + (multiplier * posVal);
  282.                                 if((i - 1) >= limit)
  283.                                         multiplier = multiplier * radix;
  284.                         }
  285.                 }
  286.                 if(value[0] == '-')     // negative values
  287.                 {
  288.                         if((result.data[maxLength-1] & 0x80000000) == 0)
  289.                                 throw(new ArithmeticException("Negative underflow in constructor."));
  290.                 }
  291.                 else    // positive values
  292.                 {
  293.                         if((result.data[maxLength-1] & 0x80000000) != 0)
  294.                                 throw(new ArithmeticException("Positive overflow in constructor."));
  295.                 }
  296.                 data = new uint[maxLength];
  297.                 for(int i = 0; i < result.dataLength; i++)
  298.                         data[i] = result.data[i];
  299.                 dataLength = result.dataLength;
  300.         }
  301.         //***********************************************************************
  302.         // Constructor (Default value provided by an array of bytes)
  303.         //
  304.         // The lowest index of the input byte array (i.e [0]) should contain the
  305.         // most significant byte of the number, and the highest index should
  306.         // contain the least significant byte.
  307.         //
  308.         // E.g.
  309.         // To initialize "a" with the default value of 0x1D4F in base 16
  310.         //      byte[] temp = { 0x1D, 0x4F };
  311.         //      BigInteger a = new BigInteger(temp)
  312.         //
  313.         // Note that this method of initialization does not allow the
  314.         // sign to be specified.
  315.         //
  316.         //***********************************************************************
  317.         public BigInteger(byte[] inData)
  318.         {
  319.                 dataLength = inData.Length >> 2;
  320.                 int leftOver = inData.Length & 0x3;
  321.                 if(leftOver != 0)         // length not multiples of 4
  322.                         dataLength++;
  323.                 if(dataLength > maxLength)
  324.                       throw(new ArithmeticException("Byte overflow in constructor."));
  325.                 data = new uint[maxLength];
  326.                 for(int i = inData.Length - 1, j = 0; i >= 3; i -= 4, j++)
  327.                 {
  328.                         data[j] = (uint)((inData[i-3] << 24) + (inData[i-2] << 16) +
  329.                                          (inData[i-1] <<  8) + inData[i]);
  330.                 }
  331.                 if(leftOver == 1)
  332.                         data[dataLength-1] = (uint)inData[0];
  333.                 else if(leftOver == 2)
  334.                         data[dataLength-1] = (uint)((inData[0] << 8) + inData[1]);
  335.                 else if(leftOver == 3)
  336.                         data[dataLength-1] = (uint)((inData[0] << 16) + (inData[1] << 8) + inData[2]);
  337.                 while(dataLength > 1 && data[dataLength-1] == 0)
  338.                         dataLength--;
  339.                 //Console.WriteLine("Len = " + dataLength);
  340.         }
  341.         //***********************************************************************
  342.         // Constructor (Default value provided by an array of bytes of the
  343.         // specified length.)
  344.         //***********************************************************************
  345.         public BigInteger(byte[] inData, int inLen)
  346.         {
  347.                 dataLength = inLen >> 2;
  348.                 int leftOver = inLen & 0x3;
  349.                 if(leftOver != 0)         // length not multiples of 4
  350.                         dataLength++;
  351.                 if(dataLength > maxLength || inLen > inData.Length)
  352.                       throw(new ArithmeticException("Byte overflow in constructor."));
  353.                 data = new uint[maxLength];
  354.                 for(int i = inLen - 1, j = 0; i >= 3; i -= 4, j++)
  355.                 {
  356.                         data[j] = (uint)((inData[i-3] << 24) + (inData[i-2] << 16) +
  357.                                          (inData[i-1] <<  8) + inData[i]);
  358.                 }
  359.                 if(leftOver == 1)
  360.                         data[dataLength-1] = (uint)inData[0];
  361.                 else if(leftOver == 2)
  362.                         data[dataLength-1] = (uint)((inData[0] << 8) + inData[1]);
  363.                 else if(leftOver == 3)
  364.                         data[dataLength-1] = (uint)((inData[0] << 16) + (inData[1] << 8) + inData[2]);
  365.                 if(dataLength == 0)
  366.                         dataLength = 1;
  367.                 while(dataLength > 1 && data[dataLength-1] == 0)
  368.                         dataLength--;
  369.                 //Console.WriteLine("Len = " + dataLength);
  370.         }
  371.         //***********************************************************************
  372.         // Constructor (Default value provided by an array of unsigned integers)
  373.         //*********************************************************************
  374.         public BigInteger(uint[] inData)
  375.         {
  376.                 dataLength = inData.Length;
  377.                 if(dataLength > maxLength)
  378.                       throw(new ArithmeticException("Byte overflow in constructor."));
  379.                 data = new uint[maxLength];
  380.                 for(int i = dataLength - 1, j = 0; i >= 0; i--, j++)
  381.                         data[j] = inData[i];
  382.                 while(dataLength > 1 && data[dataLength-1] == 0)
  383.                         dataLength--;
  384.                 //Console.WriteLine("Len = " + dataLength);
  385.         }
  386.         //***********************************************************************
  387.         // Overloading of the typecast operator.
  388.         // For BigInteger bi = 10;
  389.         //***********************************************************************
  390.         public static implicit operator BigInteger(long value)
  391.         {
  392.                 return (new BigInteger(value));
  393.         }
  394.         public static implicit operator BigInteger(ulong value)
  395.         {
  396.                 return (new BigInteger(value));
  397.         }
  398.         public static implicit operator BigInteger(int value)
  399.         {
  400.                 return (new BigInteger((long)value));
  401.         }
  402.         public static implicit operator BigInteger(uint value)
  403.         {
  404.                 return (new BigInteger((ulong)value));
  405.         }
  406.         //***********************************************************************
  407.         // Overloading of addition operator
  408.         //***********************************************************************
  409.         public static BigInteger operator +(BigInteger bi1, BigInteger bi2)
  410.         {
  411.                 BigInteger result = new BigInteger();
  412.                 result.dataLength = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  413.                 long carry = 0;
  414.                 for(int i = 0; i < result.dataLength; i++)
  415.                 {
  416.                         long sum = (long)bi1.data[i] + (long)bi2.data[i] + carry;
  417.                         carry  = sum >> 32;
  418.                         result.data[i] = (uint)(sum & 0xFFFFFFFF);
  419.                 }
  420.                 if(carry != 0 && result.dataLength < maxLength)
  421.                 {
  422.                         result.data[result.dataLength] = (uint)(carry);
  423.                         result.dataLength++;
  424.                 }
  425.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  426.                         result.dataLength--;
  427.                 // overflow check
  428.                 int lastPos = maxLength - 1;
  429.                 if((bi1.data[lastPos] & 0x80000000) == (bi2.data[lastPos] & 0x80000000) &&
  430.                    (result.data[lastPos] & 0x80000000) != (bi1.data[lastPos] & 0x80000000))
  431.                 {
  432.                         throw (new ArithmeticException());
  433.                 }
  434.                 return result;
  435.         }
  436.         //***********************************************************************
  437.         // Overloading of the unary ++ operator
  438.         //***********************************************************************
  439.         public static BigInteger operator ++(BigInteger bi1)
  440.         {
  441.                 BigInteger result = new BigInteger(bi1);
  442.                 long val, carry = 1;
  443.                 int index = 0;
  444.                 while(carry != 0 && index < maxLength)
  445.                 {
  446.                         val = (long)(result.data[index]);
  447.                         val++;
  448.                         result.data[index] = (uint)(val & 0xFFFFFFFF);
  449.                         carry = val >> 32;
  450.                         index++;
  451.                 }
  452.                 if(index > result.dataLength)
  453.                         result.dataLength = index;
  454.                 else
  455.                 {
  456.                         while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  457.                                 result.dataLength--;
  458.                 }
  459.                 // overflow check
  460.                 int lastPos = maxLength - 1;
  461.                 // overflow if initial value was +ve but ++ caused a sign
  462.                 // change to negative.
  463.                 if((bi1.data[lastPos] & 0x80000000) == 0 &&
  464.                    (result.data[lastPos] & 0x80000000) != (bi1.data[lastPos] & 0x80000000))
  465.                 {
  466.                         throw (new ArithmeticException("Overflow in ++."));
  467.                 }
  468.                 return result;
  469.         }
  470.         //***********************************************************************
  471.         // Overloading of subtraction operator
  472.         //***********************************************************************
  473.         public static BigInteger operator -(BigInteger bi1, BigInteger bi2)
  474.         {
  475.                 BigInteger result = new BigInteger();
  476.                 result.dataLength = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  477.                 long carryIn = 0;
  478.                 for(int i = 0; i < result.dataLength; i++)
  479.                 {
  480.                         long diff;
  481.                         diff = (long)bi1.data[i] - (long)bi2.data[i] - carryIn;
  482.                         result.data[i] = (uint)(diff & 0xFFFFFFFF);
  483.                         if(diff < 0)
  484.                                 carryIn = 1;
  485.                         else
  486.                                 carryIn = 0;
  487.                 }
  488.                 // roll over to negative
  489.                 if(carryIn != 0)
  490.                 {
  491.                         for(int i = result.dataLength; i < maxLength; i++)
  492.                                 result.data[i] = 0xFFFFFFFF;
  493.                         result.dataLength = maxLength;
  494.                 }
  495.                 // fixed in v1.03 to give correct datalength for a - (-b)
  496.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  497.                         result.dataLength--;
  498.                 // overflow check
  499.                 int lastPos = maxLength - 1;
  500.                 if((bi1.data[lastPos] & 0x80000000) != (bi2.data[lastPos] & 0x80000000) &&
  501.                    (result.data[lastPos] & 0x80000000) != (bi1.data[lastPos] & 0x80000000))
  502.                 {
  503.                         throw (new ArithmeticException());
  504.                 }
  505.                 return result;
  506.         }
  507.         //***********************************************************************
  508.         // Overloading of the unary -- operator
  509.         //***********************************************************************
  510.         public static BigInteger operator --(BigInteger bi1)
  511.         {
  512.                 BigInteger result = new BigInteger(bi1);
  513.                 long val;
  514.                 bool carryIn = true;
  515.                 int index = 0;
  516.                 while(carryIn && index < maxLength)
  517.                 {
  518.                         val = (long)(result.data[index]);
  519.                         val--;
  520.                         result.data[index] = (uint)(val & 0xFFFFFFFF);
  521.                         if(val >= 0)
  522.                                 carryIn = false;
  523.                         index++;
  524.                 }
  525.                 if(index > result.dataLength)
  526.                         result.dataLength = index;
  527.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  528.                         result.dataLength--;
  529.                 // overflow check
  530.                 int lastPos = maxLength - 1;
  531.                 // overflow if initial value was -ve but -- caused a sign
  532.                 // change to positive.
  533.                 if((bi1.data[lastPos] & 0x80000000) != 0 &&
  534.                    (result.data[lastPos] & 0x80000000) != (bi1.data[lastPos] & 0x80000000))
  535.                 {
  536.                         throw (new ArithmeticException("Underflow in --."));
  537.                 }
  538.                 return result;
  539.         }
  540.         //***********************************************************************
  541.         // Overloading of multiplication operator
  542.         //***********************************************************************
  543.         public static BigInteger operator *(BigInteger bi1, BigInteger bi2)
  544.         {
  545.                 int lastPos = maxLength-1;
  546.                 bool bi1Neg = false, bi2Neg = false;
  547.                 // take the absolute value of the inputs
  548.                 try
  549.                 {
  550.                         if((bi1.data[lastPos] & 0x80000000) != 0)     // bi1 negative
  551.                         {
  552.                                 bi1Neg = true; bi1 = -bi1;
  553.                         }
  554.                         if((bi2.data[lastPos] & 0x80000000) != 0)     // bi2 negative
  555.                         {
  556.                                 bi2Neg = true; bi2 = -bi2;
  557.                         }
  558.                 }
  559.                 catch(Exception) {}
  560.                 BigInteger result = new BigInteger();
  561.                 // multiply the absolute values
  562.                 try
  563.                 {
  564.                         for(int i = 0; i < bi1.dataLength; i++)
  565.                         {
  566.                                 if(bi1.data[i] == 0)    continue;
  567.                                 ulong mcarry = 0;
  568.                                 for(int j = 0, k = i; j < bi2.dataLength; j++, k++)
  569.                                 {
  570.                                         // k = i + j
  571.                                         ulong val = ((ulong)bi1.data[i] * (ulong)bi2.data[j]) +
  572.                                                      (ulong)result.data[k] + mcarry;
  573.                                         result.data[k] = (uint)(val & 0xFFFFFFFF);
  574.                 mcarry = (val >> 32);
  575.                                 }
  576.                                 if(mcarry != 0)
  577.                                         result.data[i+bi2.dataLength] = (uint)mcarry;
  578.                         }
  579.                 }
  580.                 catch(Exception)
  581.                 {
  582.                         throw(new ArithmeticException("Multiplication overflow."));
  583.                 }
  584.                 result.dataLength = bi1.dataLength + bi2.dataLength;
  585.                 if(result.dataLength > maxLength)
  586.                         result.dataLength = maxLength;
  587.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  588.                         result.dataLength--;
  589.                 // overflow check (result is -ve)
  590.                 if((result.data[lastPos] & 0x80000000) != 0)
  591.                 {
  592.                         if(bi1Neg != bi2Neg && result.data[lastPos] == 0x80000000)    // different sign
  593.                         {
  594.                                 // handle the special case where multiplication produces
  595.                                 // a max negative number in 2's complement.
  596.                                 if(result.dataLength == 1)
  597.                                         return result;
  598.                                 else
  599.                                 {
  600.                                         bool isMaxNeg = true;
  601.                                         for(int i = 0; i < result.dataLength - 1 && isMaxNeg; i++)
  602.                                         {
  603.                                                 if(result.data[i] != 0)
  604.                                                         isMaxNeg = false;
  605.                                         }
  606.                                         if(isMaxNeg)
  607.                                                 return result;
  608.                                 }
  609.                         }
  610.                         throw(new ArithmeticException("Multiplication overflow."));
  611.                 }
  612.                 // if input has different signs, then result is -ve
  613.                 if(bi1Neg != bi2Neg)
  614.                         return -result;
  615.                 return result;
  616.         }
  617.         //***********************************************************************
  618.         // Overloading of unary << operators
  619.         //***********************************************************************
  620.         public static BigInteger operator <<(BigInteger bi1, int shiftVal)
  621.         {
  622.                 BigInteger result = new BigInteger(bi1);
  623.                 result.dataLength = shiftLeft(result.data, shiftVal);
  624.                 return result;
  625.         }
  626.         // least significant bits at lower part of buffer
  627.         private static int shiftLeft(uint[] buffer, int shiftVal)
  628.         {
  629.                 int shiftAmount = 32;
  630.                 int bufLen = buffer.Length;
  631.                 while(bufLen > 1 && buffer[bufLen-1] == 0)
  632.                         bufLen--;
  633.                 for(int count = shiftVal; count > 0;)
  634.                 {
  635.                         if(count < shiftAmount)
  636.                                 shiftAmount = count;
  637.                         //Console.WriteLine("shiftAmount = {0}", shiftAmount);
  638.                         ulong carry = 0;
  639.                         for(int i = 0; i < bufLen; i++)
  640.                         {
  641.                                 ulong val = ((ulong)buffer[i]) << shiftAmount;
  642.                                 val |= carry;
  643.                                 buffer[i] = (uint)(val & 0xFFFFFFFF);
  644.                                 carry = val >> 32;
  645.                         }
  646.                         if(carry != 0)
  647.                         {
  648.                                 if(bufLen + 1 <= buffer.Length)
  649.                                 {
  650.                                         buffer[bufLen] = (uint)carry;
  651.                                         bufLen++;
  652.                                 }
  653.                         }
  654.                         count -= shiftAmount;
  655.                 }
  656.                 return bufLen;
  657.         }
  658.         //***********************************************************************
  659.         // Overloading of unary >> operators
  660.         //***********************************************************************
  661.         public static BigInteger operator >>(BigInteger bi1, int shiftVal)
  662.         {
  663.                 BigInteger result = new BigInteger(bi1);
  664.                 result.dataLength = shiftRight(result.data, shiftVal);
  665.                 if((bi1.data[maxLength-1] & 0x80000000) != 0) // negative
  666.                 {
  667.                         for(int i = maxLength - 1; i >= result.dataLength; i--)
  668.                                 result.data[i] = 0xFFFFFFFF;
  669.                         uint mask = 0x80000000;
  670.                         for(int i = 0; i < 32; i++)
  671.                         {
  672.                                 if((result.data[result.dataLength-1] & mask) != 0)
  673.                                         break;
  674.                                 result.data[result.dataLength-1] |= mask;
  675.                                 mask >>= 1;
  676.                         }
  677.                         result.dataLength = maxLength;
  678.                 }
  679.                 return result;
  680.         }
  681.         private static int shiftRight(uint[] buffer, int shiftVal)
  682.         {
  683.                 int shiftAmount = 32;
  684.                 int invShift = 0;
  685.                 int bufLen = buffer.Length;
  686.                 while(bufLen > 1 && buffer[bufLen-1] == 0)
  687.                         bufLen--;
  688.                 //Console.WriteLine("bufLen = " + bufLen + " buffer.Length = " + buffer.Length);
  689.                 for(int count = shiftVal; count > 0;)
  690.                 {
  691.                         if(count < shiftAmount)
  692.                         {
  693.                                 shiftAmount = count;
  694.                                 invShift = 32 - shiftAmount;
  695.                         }
  696.                         //Console.WriteLine("shiftAmount = {0}", shiftAmount);
  697.                         ulong carry = 0;
  698.                         for(int i = bufLen - 1; i >= 0; i--)
  699.                         {
  700.                                 ulong val = ((ulong)buffer[i]) >> shiftAmount;
  701.                                 val |= carry;
  702.                                 carry = ((ulong)buffer[i]) << invShift;
  703.                                 buffer[i] = (uint)(val);
  704.                         }
  705.                         count -= shiftAmount;
  706.                 }
  707.                 while(bufLen > 1 && buffer[bufLen-1] == 0)
  708.                         bufLen--;
  709.                 return bufLen;
  710.         }
  711.         //***********************************************************************
  712.         // Overloading of the NOT operator (1's complement)
  713.         //***********************************************************************
  714.         public static BigInteger operator ~(BigInteger bi1)
  715.         {
  716.                 BigInteger result = new BigInteger(bi1);
  717.                 for(int i = 0; i < maxLength; i++)
  718.                         result.data[i] = (uint)(~(bi1.data[i]));
  719.                 result.dataLength = maxLength;
  720.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  721.                         result.dataLength--;
  722.                 return result;
  723.         }
  724.         //***********************************************************************
  725.         // Overloading of the NEGATE operator (2's complement)
  726.         //***********************************************************************
  727.         public static BigInteger operator -(BigInteger bi1)
  728.         {
  729.                 // handle neg of zero separately since it'll cause an overflow
  730.                 // if we proceed.
  731.                 if(bi1.dataLength == 1 && bi1.data[0] == 0)
  732.                         return (new BigInteger());
  733.                 BigInteger result = new BigInteger(bi1);
  734.                 // 1's complement
  735.                 for(int i = 0; i < maxLength; i++)
  736.                         result.data[i] = (uint)(~(bi1.data[i]));
  737.                 // add one to result of 1's complement
  738.                 long val, carry = 1;
  739.                 int index = 0;
  740.                 while(carry != 0 && index < maxLength)
  741.                 {
  742.                         val = (long)(result.data[index]);
  743.                         val++;
  744.                         result.data[index] = (uint)(val & 0xFFFFFFFF);
  745.                         carry = val >> 32;
  746.                         index++;
  747.                 }
  748.                 if((bi1.data[maxLength-1] & 0x80000000) == (result.data[maxLength-1] & 0x80000000))
  749.                         throw (new ArithmeticException("Overflow in negation.n"));
  750.                 result.dataLength = maxLength;
  751.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  752.                         result.dataLength--;
  753.                 return result;
  754.         }
  755.         //***********************************************************************
  756.         // Overloading of equality operator
  757.         //***********************************************************************
  758.         public static bool operator ==(BigInteger bi1, BigInteger bi2)
  759.         {
  760. if(Object.Equals(bi1, bi2))
  761. return true;
  762. else
  763. return bi1.Equals(bi2);
  764.         }
  765.         public static bool operator !=(BigInteger bi1, BigInteger bi2)
  766.         {
  767. if(Object.Equals(bi1, bi2))
  768. return false;
  769. else
  770. return !(bi1.Equals(bi2));
  771.         }
  772.         public override bool Equals(object o)
  773.         {
  774. if(o==null || !(o is BigInteger)) return false;
  775. BigInteger bi = (BigInteger)o;
  776.                 if(this.dataLength != bi.dataLength)
  777.                         return false;
  778.                 for(int i = 0; i < this.dataLength; i++)
  779.                 {
  780.                         if(this.data[i] != bi.data[i])
  781.                                 return false;
  782.                 }
  783.                 return true;
  784.         }
  785.         public override int GetHashCode()
  786.         {
  787.                 return this.ToString().GetHashCode();
  788.         }
  789.         //***********************************************************************
  790.         // Overloading of inequality operator
  791.         //***********************************************************************
  792.         public static bool operator >(BigInteger bi1, BigInteger bi2)
  793.         {
  794.          int pos = maxLength - 1;
  795.          // bi1 is negative, bi2 is positive
  796.          if((bi1.data[pos] & 0x80000000) != 0 && (bi2.data[pos] & 0x80000000) == 0)
  797.                  return false;
  798.                 // bi1 is positive, bi2 is negative
  799.          else if((bi1.data[pos] & 0x80000000) == 0 && (bi2.data[pos] & 0x80000000) != 0)
  800.                  return true;
  801.                 // same sign
  802.          int len = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  803.         for(pos = len - 1; pos >= 0 && bi1.data[pos] == bi2.data[pos]; pos--);
  804.         if(pos >= 0)
  805.         {
  806.         if(bi1.data[pos] > bi2.data[pos])
  807.         return true;
  808.         return false;
  809.         }
  810.         return false;
  811.         }
  812.         public static bool operator <(BigInteger bi1, BigInteger bi2)
  813.         {
  814.          int pos = maxLength - 1;
  815.          // bi1 is negative, bi2 is positive
  816.          if((bi1.data[pos] & 0x80000000) != 0 && (bi2.data[pos] & 0x80000000) == 0)
  817.                  return true;
  818.                 // bi1 is positive, bi2 is negative
  819.          else if((bi1.data[pos] & 0x80000000) == 0 && (bi2.data[pos] & 0x80000000) != 0)
  820.                  return false;
  821.          // same sign
  822.          int len = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  823.         for(pos = len - 1; pos >= 0 && bi1.data[pos] == bi2.data[pos]; pos--);
  824.         if(pos >= 0)
  825.         {
  826.         if(bi1.data[pos] < bi2.data[pos])
  827.         return true;
  828.         return false;
  829.         }
  830.         return false;
  831.         }
  832.         public static bool operator >=(BigInteger bi1, BigInteger bi2)
  833.         {
  834.                 return (bi1 == bi2 || bi1 > bi2);
  835.         }
  836.         public static bool operator <=(BigInteger bi1, BigInteger bi2)
  837.         {
  838.                 return (bi1 == bi2 || bi1 < bi2);
  839.         }
  840.         //***********************************************************************
  841.         // Private function that supports the division of two numbers with
  842.         // a divisor that has more than 1 digit.
  843.         //
  844.         // Algorithm taken from [1]
  845.         //***********************************************************************
  846.         private static void multiByteDivide(BigInteger bi1, BigInteger bi2,
  847.                                             BigInteger outQuotient, BigInteger outRemainder)
  848.         {
  849.                 uint[] result = new uint[maxLength];
  850.                 int remainderLen = bi1.dataLength + 1;
  851.                 uint[] remainder = new uint[remainderLen];
  852.                 uint mask = 0x80000000;
  853.                 uint val = bi2.data[bi2.dataLength - 1];
  854.                 int shift = 0, resultPos = 0;
  855.                 while(mask != 0 && (val & mask) == 0)
  856.                 {
  857.                         shift++; mask >>= 1;
  858.                 }
  859.                 //Console.WriteLine("shift = {0}", shift);
  860.                 //Console.WriteLine("Before bi1 Len = {0}, bi2 Len = {1}", bi1.dataLength, bi2.dataLength);
  861.                 for(int i = 0; i < bi1.dataLength; i++)
  862.                         remainder[i] = bi1.data[i];
  863.                 shiftLeft(remainder, shift);
  864.                 bi2 = bi2 << shift;
  865.                 /*
  866.                 Console.WriteLine("bi1 Len = {0}, bi2 Len = {1}", bi1.dataLength, bi2.dataLength);
  867.                 Console.WriteLine("dividend = " + bi1 + "ndivisor = " + bi2);
  868.                 for(int q = remainderLen - 1; q >= 0; q--)
  869.                         Console.Write("{0:x2}", remainder[q]);
  870.                 Console.WriteLine();
  871.                 */
  872.                 int j = remainderLen - bi2.dataLength;
  873.                 int pos = remainderLen - 1;
  874.                 ulong firstDivisorByte = bi2.data[bi2.dataLength-1];
  875.                 ulong secondDivisorByte = bi2.data[bi2.dataLength-2];
  876.                 int divisorLen = bi2.dataLength + 1;
  877.                 uint[] dividendPart = new uint[divisorLen];
  878.                 while(j > 0)
  879.                 {
  880.                         ulong dividend = ((ulong)remainder[pos] << 32) + (ulong)remainder[pos-1];
  881.                         //Console.WriteLine("dividend = {0}", dividend);
  882.                         ulong q_hat = dividend / firstDivisorByte;
  883.                         ulong r_hat = dividend % firstDivisorByte;
  884.                         //Console.WriteLine("q_hat = {0:X}, r_hat = {1:X}", q_hat, r_hat);
  885.                         bool done = false;
  886.                         while(!done)
  887.                         {
  888.                                 done = true;
  889.                                 if(q_hat == 0x100000000 ||
  890.                                    (q_hat * secondDivisorByte) > ((r_hat << 32) + remainder[pos-2]))
  891.                                 {
  892.                                         q_hat--;
  893.                                         r_hat += firstDivisorByte;
  894.                                         if(r_hat < 0x100000000)
  895.                                                 done = false;
  896.                                 }
  897.                         }
  898.                         for(int h = 0; h < divisorLen; h++)
  899.                                 dividendPart[h] = remainder[pos-h];
  900.                         BigInteger kk = new BigInteger(dividendPart);
  901.                         BigInteger ss = bi2 * (long)q_hat;
  902.                         //Console.WriteLine("ss before = " + ss);
  903.                         while(ss > kk)
  904.                         {
  905.                                 q_hat--;
  906.                                 ss -= bi2;
  907.                                 //Console.WriteLine(ss);
  908.                         }
  909.                         BigInteger yy = kk - ss;
  910.                         //Console.WriteLine("ss = " + ss);
  911.                         //Console.WriteLine("kk = " + kk);
  912.                         //Console.WriteLine("yy = " + yy);
  913.                         for(int h = 0; h < divisorLen; h++)
  914.                                 remainder[pos-h] = yy.data[bi2.dataLength-h];
  915.                         /*
  916.                         Console.WriteLine("dividend = ");
  917.                         for(int q = remainderLen - 1; q >= 0; q--)
  918.                                 Console.Write("{0:x2}", remainder[q]);
  919.                         Console.WriteLine("n************ q_hat = {0:X}n", q_hat);
  920.                         */
  921.                         result[resultPos++] = (uint)q_hat;
  922.                         pos--;
  923.                         j--;
  924.                 }
  925.                 outQuotient.dataLength = resultPos;
  926.                 int y = 0;
  927.                 for(int x = outQuotient.dataLength - 1; x >= 0; x--, y++)
  928.                         outQuotient.data[y] = result[x];
  929.                 for(; y < maxLength; y++)
  930.                         outQuotient.data[y] = 0;
  931.                 while(outQuotient.dataLength > 1 && outQuotient.data[outQuotient.dataLength-1] == 0)
  932.                         outQuotient.dataLength--;
  933.                 if(outQuotient.dataLength == 0)
  934.                         outQuotient.dataLength = 1;
  935.                 outRemainder.dataLength = shiftRight(remainder, shift);
  936.                 for(y = 0; y < outRemainder.dataLength; y++)
  937.                         outRemainder.data[y] = remainder[y];
  938.                 for(; y < maxLength; y++)
  939.                         outRemainder.data[y] = 0;
  940.         }
  941.         //***********************************************************************
  942.         // Private function that supports the division of two numbers with
  943.         // a divisor that has only 1 digit.
  944.         //***********************************************************************
  945.         private static void singleByteDivide(BigInteger bi1, BigInteger bi2,
  946.                                              BigInteger outQuotient, BigInteger outRemainder)
  947.         {
  948.                 uint[] result = new uint[maxLength];
  949.                 int resultPos = 0;
  950.                 // copy dividend to reminder
  951.                 for(int i = 0; i < maxLength; i++)
  952.                         outRemainder.data[i] = bi1.data[i];
  953.                 outRemainder.dataLength = bi1.dataLength;
  954.                 while(outRemainder.dataLength > 1 && outRemainder.data[outRemainder.dataLength-1] == 0)
  955.                         outRemainder.dataLength--;
  956.                 ulong divisor = (ulong)bi2.data[0];
  957.                 int pos = outRemainder.dataLength - 1;
  958.                 ulong dividend = (ulong)outRemainder.data[pos];
  959.                 //Console.WriteLine("divisor = " + divisor + " dividend = " + dividend);
  960.                 //Console.WriteLine("divisor = " + bi2 + "ndividend = " + bi1);
  961.                 if(dividend >= divisor)
  962.                 {
  963.                         ulong quotient = dividend / divisor;
  964.                         result[resultPos++] = (uint)quotient;
  965.                         outRemainder.data[pos] = (uint)(dividend % divisor);
  966.                 }
  967.                 pos--;
  968.                 while(pos >= 0)
  969.                 {
  970.                         //Console.WriteLine(pos);
  971.                         dividend = ((ulong)outRemainder.data[pos+1] << 32) + (ulong)outRemainder.data[pos];
  972.                         ulong quotient = dividend / divisor;
  973.                         result[resultPos++] = (uint)quotient;
  974.                         outRemainder.data[pos+1] = 0;
  975.                         outRemainder.data[pos--] = (uint)(dividend % divisor);
  976.                         //Console.WriteLine(">>>> " + bi1);
  977.                 }
  978.                 outQuotient.dataLength = resultPos;
  979.                 int j = 0;
  980.                 for(int i = outQuotient.dataLength - 1; i >= 0; i--, j++)
  981.                         outQuotient.data[j] = result[i];
  982.                 for(; j < maxLength; j++)
  983.                         outQuotient.data[j] = 0;
  984.                 while(outQuotient.dataLength > 1 && outQuotient.data[outQuotient.dataLength-1] == 0)
  985.                         outQuotient.dataLength--;
  986.                 if(outQuotient.dataLength == 0)
  987.                         outQuotient.dataLength = 1;
  988.                 while(outRemainder.dataLength > 1 && outRemainder.data[outRemainder.dataLength-1] == 0)
  989.                         outRemainder.dataLength--;
  990.         }
  991.         //***********************************************************************
  992.         // Overloading of division operator
  993.         //***********************************************************************
  994.         public static BigInteger operator /(BigInteger bi1, BigInteger bi2)
  995.         {
  996.                 BigInteger quotient = new BigInteger();
  997.                 BigInteger remainder = new BigInteger();
  998.                 int lastPos = maxLength-1;
  999.                 bool divisorNeg = false, dividendNeg = false;
  1000.                 if((bi1.data[lastPos] & 0x80000000) != 0)     // bi1 negative
  1001.                 {
  1002.                         bi1 = -bi1;
  1003.                         dividendNeg = true;
  1004.                 }
  1005.                 if((bi2.data[lastPos] & 0x80000000) != 0)     // bi2 negative
  1006.                 {
  1007.                         bi2 = -bi2;
  1008.                         divisorNeg = true;
  1009.                 }
  1010.                 if(bi1 < bi2)
  1011.                 {
  1012.                         return quotient;
  1013.                 }
  1014.                 else
  1015.                 {
  1016.                         if(bi2.dataLength == 1)
  1017.                                 singleByteDivide(bi1, bi2, quotient, remainder);
  1018.                         else
  1019.                                 multiByteDivide(bi1, bi2, quotient, remainder);
  1020.                         if(dividendNeg != divisorNeg)
  1021.                                 return -quotient;
  1022.                         return quotient;
  1023.                 }
  1024.         }
  1025.         //***********************************************************************
  1026.         // Overloading of modulus operator
  1027.         //***********************************************************************
  1028.         public static BigInteger operator %(BigInteger bi1, BigInteger bi2)
  1029.         {
  1030.                 BigInteger quotient = new BigInteger();
  1031.                 BigInteger remainder = new BigInteger(bi1);
  1032.                 int lastPos = maxLength-1;
  1033.                 bool dividendNeg = false;
  1034.                 if((bi1.data[lastPos] & 0x80000000) != 0)     // bi1 negative
  1035.                 {
  1036.                         bi1 = -bi1;
  1037.                         dividendNeg = true;
  1038.                 }
  1039.                 if((bi2.data[lastPos] & 0x80000000) != 0)     // bi2 negative
  1040.                         bi2 = -bi2;
  1041.                 if(bi1 < bi2)
  1042.                 {
  1043.                         return remainder;
  1044.                 }
  1045.                 else
  1046.                 {
  1047.                         if(bi2.dataLength == 1)
  1048.                                 singleByteDivide(bi1, bi2, quotient, remainder);
  1049.                         else
  1050.                                 multiByteDivide(bi1, bi2, quotient, remainder);
  1051.                         if(dividendNeg)
  1052.                                 return -remainder;
  1053.                         return remainder;
  1054.                 }
  1055.         }
  1056.         //***********************************************************************
  1057.         // Overloading of bitwise AND operator
  1058.         //***********************************************************************
  1059.         public static BigInteger operator &(BigInteger bi1, BigInteger bi2)
  1060.         {
  1061.                 BigInteger result = new BigInteger();
  1062.                 int len = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  1063.                 for(int i = 0; i < len; i++)
  1064.                 {
  1065.                         uint sum = (uint)(bi1.data[i] & bi2.data[i]);
  1066.                         result.data[i] = sum;
  1067.                 }
  1068.                 result.dataLength = maxLength;
  1069.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  1070.                         result.dataLength--;
  1071.                 return result;
  1072.         }
  1073.         //***********************************************************************
  1074.         // Overloading of bitwise OR operator
  1075.         //***********************************************************************
  1076.         public static BigInteger operator |(BigInteger bi1, BigInteger bi2)
  1077.         {
  1078.                 BigInteger result = new BigInteger();
  1079.                 int len = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  1080.                 for(int i = 0; i < len; i++)
  1081.                 {
  1082.                         uint sum = (uint)(bi1.data[i] | bi2.data[i]);
  1083.                         result.data[i] = sum;
  1084.                 }
  1085.                 result.dataLength = maxLength;
  1086.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  1087.                         result.dataLength--;
  1088.                 return result;
  1089.         }
  1090.         //***********************************************************************
  1091.         // Overloading of bitwise XOR operator
  1092.         //***********************************************************************
  1093.         public static BigInteger operator ^(BigInteger bi1, BigInteger bi2)
  1094.         {
  1095.                 BigInteger result = new BigInteger();
  1096.                 int len = (bi1.dataLength > bi2.dataLength) ? bi1.dataLength : bi2.dataLength;
  1097.                 for(int i = 0; i < len; i++)
  1098.                 {
  1099.                         uint sum = (uint)(bi1.data[i] ^ bi2.data[i]);
  1100.                         result.data[i] = sum;
  1101.                 }
  1102.                 result.dataLength = maxLength;
  1103.                 while(result.dataLength > 1 && result.data[result.dataLength-1] == 0)
  1104.                         result.dataLength--;
  1105.                 return result;
  1106.         }
  1107.         //***********************************************************************
  1108.         // Returns max(this, bi)
  1109.         //***********************************************************************
  1110.         public BigInteger max(BigInteger bi)
  1111.         {
  1112.                 if(this > bi)
  1113.                         return (new BigInteger(this));
  1114.                 else
  1115.                         return (new BigInteger(bi));
  1116.         }
  1117.         //***********************************************************************
  1118.         // Returns min(this, bi)
  1119.         //***********************************************************************
  1120.         public BigInteger min(BigInteger bi)
  1121.         {
  1122.                 if(this < bi)
  1123.                         return (new BigInteger(this));
  1124.                 else
  1125.                         return (new BigInteger(bi));
  1126.         }
  1127.         //***********************************************************************
  1128.         // Returns the absolute value
  1129.         //***********************************************************************
  1130.         public BigInteger abs()
  1131.         {
  1132.                 if((this.data[maxLength - 1] & 0x80000000) != 0)
  1133.                         return (-this);
  1134.                 else
  1135.                         return (new BigInteger(this));
  1136.         }
  1137.         //***********************************************************************
  1138.         // Returns a string representing the BigInteger in base 10.
  1139.         //***********************************************************************
  1140.         public override string ToString()
  1141.         {
  1142.                 return ToString(10);
  1143.         }
  1144.         //***********************************************************************
  1145.         // Returns a string representing the BigInteger in sign-and-magnitude
  1146.         // format in the specified radix.
  1147.         //
  1148.         // Example
  1149.         // -------
  1150.         // If the value of BigInteger is -255 in base 10, then
  1151.         // ToString(16) returns "-FF"
  1152.         //
  1153.         //***********************************************************************
  1154.         public string ToString(int radix)
  1155.         {
  1156.                 if(radix < 2 || radix > 36)
  1157.                         throw (new ArgumentException("Radix must be >= 2 and <= 36"));
  1158.                 string charSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  1159.                 string result = "";
  1160.                 BigInteger a = this;
  1161.                 bool negative = false;
  1162.                 if((a.data[maxLength-1] & 0x80000000) != 0)
  1163.                 {
  1164.                         negative = true;
  1165.                         try
  1166.                         {
  1167.                                 a = -a;
  1168.                         }
  1169.                         catch(Exception) {}
  1170.                 }
  1171.                 BigInteger quotient = new BigInteger();
  1172.                 BigInteger remainder = new BigInteger();
  1173.                 BigInteger biRadix = new BigInteger(radix);
  1174.                 if(a.dataLength == 1 && a.data[0] == 0)
  1175.                         result = "0";
  1176.                 else
  1177.                 {
  1178.                         while(a.dataLength > 1 || (a.dataLength == 1 && a.data[0] != 0))
  1179.                         {
  1180.                                 singleByteDivide(a, biRadix, quotient, remainder);
  1181.                                 if(remainder.data[0] < 10)
  1182.                                         result = remainder.data[0] + result;
  1183.                                 else
  1184.                                         result = charSet[(int)remainder.data[0] - 10] + result;
  1185.                                 a = quotient;
  1186.                         }
  1187.                         if(negative)
  1188.                                 result = "-" + result;
  1189.                 }
  1190.                 return result;
  1191.         }
  1192.         //***********************************************************************
  1193.         // Returns a hex string showing the contains of the BigInteger
  1194.         //
  1195.         // Examples
  1196.         // -------
  1197.         // 1) If the value of BigInteger is 255 in base 10, then
  1198.         //    ToHexString() returns "FF"
  1199.         //
  1200.         // 2) If the value of BigInteger is -255 in base 10, then
  1201.         //    ToHexString() returns ".....FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01",
  1202.         //    which is the 2's complement representation of -255.
  1203.         //
  1204.         //***********************************************************************
  1205.         public string ToHexString()
  1206.         {
  1207.                 string result = data[dataLength - 1].ToString("X");
  1208.                 for(int i = dataLength - 2; i >= 0; i--)
  1209.                 {
  1210.                         result += data[i].ToString("X8");
  1211.                 }
  1212.                 return result;
  1213.         }
  1214.         //***********************************************************************
  1215.         // Modulo Exponentiation
  1216.         //***********************************************************************
  1217.         public BigInteger modPow(BigInteger exp, BigInteger n)
  1218.         {
  1219.                 if((exp.data[maxLength-1] & 0x80000000) != 0)
  1220.                         throw (new ArithmeticException("Positive exponents only."));
  1221.                 BigInteger resultNum = 1;
  1222.         BigInteger tempNum;
  1223.         bool thisNegative = false;
  1224.         if((this.data[maxLength-1] & 0x80000000) != 0)   // negative this
  1225.         {
  1226.                 tempNum = -this % n;
  1227.                 thisNegative = true;
  1228.         }
  1229.         else
  1230.                 tempNum = this % n;  // ensures (tempNum * tempNum) < b^(2k)
  1231.         if((n.data[maxLength-1] & 0x80000000) != 0)   // negative n
  1232.                 n = -n;
  1233.                 // calculate constant = b^(2k) / m
  1234.                 BigInteger constant = new BigInteger();
  1235.                 int i = n.dataLength << 1;
  1236.                 constant.data[i] = 0x00000001;
  1237.                 constant.dataLength = i + 1;
  1238.                 constant = constant / n;
  1239.                 int totalBits = exp.bitCount();
  1240.                 int count = 0;
  1241.                 // perform squaring and multiply exponentiation
  1242.                 for(int pos = 0; pos < exp.dataLength; pos++)
  1243.                 {
  1244.                         uint mask = 0x01;
  1245.                         //Console.WriteLine("pos = " + pos);
  1246.                         for(int index = 0; index < 32; index++)
  1247.                         {
  1248.                                 if((exp.data[pos] & mask) != 0)
  1249.                                         resultNum = BarrettReduction(resultNum * tempNum, n, constant);
  1250.                                 mask <<= 1;
  1251.                                 tempNum = BarrettReduction(tempNum * tempNum, n, constant);
  1252.                                 if(tempNum.dataLength == 1 && tempNum.data[0] == 1)
  1253.                                 {
  1254.                                         if(thisNegative && (exp.data[0] & 0x1) != 0)    //odd exp
  1255.                                                 return -resultNum;
  1256.                                         return resultNum;
  1257.                                 }
  1258.                                 count++;
  1259.                                 if(count == totalBits)
  1260.                                         break;
  1261.                         }
  1262.                 }
  1263.                 if(thisNegative && (exp.data[0] & 0x1) != 0)    //odd exp
  1264.                         return -resultNum;
  1265.         return resultNum;
  1266.         }
  1267.         //***********************************************************************
  1268.         // Fast calculation of modular reduction using Barrett's reduction.
  1269.         // Requires x < b^(2k), where b is the base.  In this case, base is
  1270.         // 2^32 (uint).
  1271.         //
  1272.         // Reference [4]
  1273.         //***********************************************************************
  1274.         private BigInteger BarrettReduction(BigInteger x, BigInteger n, BigInteger constant)
  1275.         {
  1276.                 int k = n.dataLength,
  1277.                     kPlusOne = k+1,
  1278.                     kMinusOne = k-1;
  1279.                 BigInteger q1 = new BigInteger();
  1280.                 // q1 = x / b^(k-1)
  1281.                 for(int i = kMinusOne, j = 0; i < x.dataLength; i++, j++)
  1282.                         q1.data[j] = x.data[i];
  1283.                 q1.dataLength = x.dataLength - kMinusOne;
  1284.                 if(q1.dataLength <= 0)
  1285.                         q1.dataLength = 1;
  1286.                 BigInteger q2 = q1 * constant;
  1287.                 BigInteger q3 = new BigInteger();
  1288.                 // q3 = q2 / b^(k+1)
  1289.                 for(int i = kPlusOne, j = 0; i < q2.dataLength; i++, j++)
  1290.                         q3.data[j] = q2.data[i];
  1291.                 q3.dataLength = q2.dataLength - kPlusOne;
  1292.                 if(q3.dataLength <= 0)
  1293.                         q3.dataLength = 1;
  1294.                 // r1 = x mod b^(k+1)
  1295.                 // i.e. keep the lowest (k+1) words
  1296.                 BigInteger r1 = new BigInteger();
  1297.                 int lengthToCopy = (x.dataLength > kPlusOne) ? kPlusOne : x.dataLength;
  1298.                 for(int i = 0; i < lengthToCopy; i++)
  1299.                         r1.data[i] = x.data[i];
  1300.                 r1.dataLength = lengthToCopy;
  1301.                 // r2 = (q3 * n) mod b^(k+1)
  1302.                 // partial multiplication of q3 and n
  1303.                 BigInteger r2 = new BigInteger();
  1304.                 for(int i = 0; i < q3.dataLength; i++)
  1305.                 {
  1306.                         if(q3.data[i] == 0)     continue;
  1307.                         ulong mcarry = 0;
  1308.                         int t = i;
  1309.                         for(int j = 0; j < n.dataLength && t < kPlusOne; j++, t++)
  1310.                         {
  1311.                                 // t = i + j
  1312.                                 ulong val = ((ulong)q3.data[i] * (ulong)n.data[j]) +
  1313.                                              (ulong)r2.data[t] + mcarry;
  1314.                                 r2.data[t] = (uint)(val & 0xFFFFFFFF);
  1315.                                 mcarry = (val >> 32);
  1316.                         }
  1317.                         if(t < kPlusOne)
  1318.                                 r2.data[t] = (uint)mcarry;
  1319.                 }
  1320.                 r2.dataLength = kPlusOne;
  1321.                 while(r2.dataLength > 1 && r2.data[r2.dataLength-1] == 0)
  1322.                         r2.dataLength--;
  1323.                 r1 -= r2;
  1324.                 if((r1.data[maxLength-1] & 0x80000000) != 0)        // negative
  1325.                 {
  1326.                         BigInteger val = new BigInteger();
  1327.                         val.data[kPlusOne] = 0x00000001;
  1328.                         val.dataLength = kPlusOne + 1;
  1329.                         r1 += val;
  1330.                 }
  1331.                 while(r1 >= n)
  1332.                         r1 -= n;
  1333.                 return r1;
  1334.         }
  1335.         //***********************************************************************
  1336.         // Returns gcd(this, bi)
  1337.         //***********************************************************************
  1338.         public BigInteger gcd(BigInteger bi)
  1339.         {
  1340.                 BigInteger x;
  1341.                 BigInteger y;
  1342.                 if((data[maxLength-1] & 0x80000000) != 0)     // negative
  1343.                         x = -this;
  1344.                 else
  1345.                         x = this;
  1346.                 if((bi.data[maxLength-1] & 0x80000000) != 0)     // negative
  1347.                         y = -bi;
  1348.                 else
  1349.                         y = bi;
  1350.         BigInteger g = y;
  1351.         while(x.dataLength > 1 || (x.dataLength == 1 && x.data[0] != 0))
  1352.         {
  1353.         g = x;
  1354.         x = y % x;
  1355.         y = g;
  1356.          }
  1357.         return g;
  1358.         }
  1359.         //***********************************************************************
  1360.         // Populates "this" with the specified amount of random bits
  1361.         //***********************************************************************
  1362.         public void genRandomBits(int bits, Random rand)
  1363.         {
  1364.         int dwords = bits >> 5;
  1365.         int remBits = bits & 0x1F;
  1366.         if(remBits != 0)
  1367.         dwords++;
  1368.         if(dwords > maxLength)
  1369.         throw (new ArithmeticException("Number of required bits > maxLength."));
  1370.         for(int i = 0; i < dwords; i++)
  1371.         data[i] = (uint)(rand.NextDouble() * 0x100000000);
  1372.         for(int i = dwords; i < maxLength; i++)
  1373.         data[i] = 0;
  1374.         if(remBits != 0)
  1375.         {
  1376.         uint mask = (uint)(0x01 << (remBits-1));
  1377.         data[dwords-1] |= mask;
  1378.         mask = (uint)(0xFFFFFFFF >> (32 - remBits));
  1379.         data[dwords-1] &= mask;
  1380.         }
  1381.         else
  1382.         data[dwords-1] |= 0x80000000;
  1383.         dataLength = dwords;
  1384.         if(dataLength == 0)
  1385.                 dataLength = 1;
  1386.         }
  1387.         //***********************************************************************
  1388.         // Returns the position of the most significant bit in the BigInteger.
  1389.         //
  1390.         // Eg.  The result is 0, if the value of BigInteger is 0...0000 0000
  1391.         //      The result is 1, if the value of BigInteger is 0...0000 0001
  1392.         //      The result is 2, if the value of BigInteger is 0...0000 0010
  1393.         //      The result is 2, if the value of BigInteger is 0...0000 0011
  1394.         //
  1395.         //***********************************************************************
  1396.         public int bitCount()
  1397.         {
  1398.                 while(dataLength > 1 && data[dataLength-1] == 0)
  1399.                         dataLength--;
  1400.                uint value = data[dataLength - 1];
  1401.                uint mask = 0x80000000;
  1402.                int bits = 32;
  1403.                while(bits > 0 && (value & mask) == 0)
  1404.                {
  1405.                         bits--;
  1406.                         mask >>= 1;
  1407.                }
  1408.                bits += ((dataLength - 1) << 5);
  1409.                return bits;
  1410.         }
  1411.         //***********************************************************************
  1412.         // Probabilistic prime test based on Fermat's little theorem
  1413.         //
  1414.         // for any a < p (p does not divide a) if
  1415.         //      a^(p-1) mod p != 1 then p is not prime.
  1416.         //
  1417.         // Otherwise, p is probably prime (pseudoprime to the chosen base).
  1418.         //
  1419.         // Returns
  1420.         // -------
  1421.         // True if "this" is a pseudoprime to randomly chosen
  1422.         // bases.  The number of chosen bases is given by the "confidence"
  1423.         // parameter.
  1424.         //
  1425.         // False if "this" is definitely NOT prime.
  1426.         //
  1427.         // Note - this method is fast but fails for Carmichael numbers except
  1428.         // when the randomly chosen base is a factor of the number.
  1429.         //
  1430.         //***********************************************************************
  1431.         public bool FermatLittleTest(int confidence)
  1432.         {
  1433.                 BigInteger thisVal;
  1434.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1435.                         thisVal = -this;
  1436.                 else
  1437.                         thisVal = this;
  1438.                 if(thisVal.dataLength == 1)
  1439.                 {
  1440.                         // test small numbers
  1441.                         if(thisVal.data[0] == 0 || thisVal.data[0] == 1)
  1442.                                 return false;
  1443.                         else if(thisVal.data[0] == 2 || thisVal.data[0] == 3)
  1444.                                 return true;
  1445.                 }
  1446.                 if((thisVal.data[0] & 0x1) == 0)     // even numbers
  1447.                         return false;
  1448.         int bits = thisVal.bitCount();
  1449.         BigInteger a = new BigInteger();
  1450.         BigInteger p_sub1 = thisVal - (new BigInteger(1));
  1451.         Random rand = new Random();
  1452.         for(int round = 0; round < confidence; round++)
  1453.         {
  1454.         bool done = false;
  1455.         while(!done) // generate a < n
  1456.         {
  1457.         int testBits = 0;
  1458.         // make sure "a" has at least 2 bits
  1459.         while(testBits < 2)
  1460.         testBits = (int)(rand.NextDouble() * bits);
  1461.         a.genRandomBits(testBits, rand);
  1462.         int byteLen = a.dataLength;
  1463.                                 // make sure "a" is not 0
  1464.         if(byteLen > 1 || (byteLen == 1 && a.data[0] != 1))
  1465.                                         done = true;
  1466.         }
  1467.                         // check whether a factor exists (fix for version 1.03)
  1468.         BigInteger gcdTest = a.gcd(thisVal);
  1469.                         if(gcdTest.dataLength == 1 && gcdTest.data[0] != 1)
  1470.                                 return false;
  1471.         // calculate a^(p-1) mod p
  1472.         BigInteger expResult = a.modPow(p_sub1, thisVal);
  1473.         int resultLen = expResult.dataLength;
  1474.                         // is NOT prime is a^(p-1) mod p != 1
  1475.         if(resultLen > 1 || (resultLen == 1 && expResult.data[0] != 1))
  1476.         {
  1477.                 //Console.WriteLine("a = " + a.ToString());
  1478.         return false;
  1479.                         }
  1480.         }
  1481.         return true;
  1482.         }
  1483.         //***********************************************************************
  1484.         // Probabilistic prime test based on Rabin-Miller's
  1485.         //
  1486.         // for any p > 0 with p - 1 = 2^s * t
  1487.         //
  1488.         // p is probably prime (strong pseudoprime) if for any a < p,
  1489.         // 1) a^t mod p = 1 or
  1490.         // 2) a^((2^j)*t) mod p = p-1 for some 0 <= j <= s-1
  1491.         //
  1492.         // Otherwise, p is composite.
  1493.         //
  1494.         // Returns
  1495.         // -------
  1496.         // True if "this" is a strong pseudoprime to randomly chosen
  1497.         // bases.  The number of chosen bases is given by the "confidence"
  1498.         // parameter.
  1499.         //
  1500.         // False if "this" is definitely NOT prime.
  1501.         //
  1502.         //***********************************************************************
  1503.         public bool RabinMillerTest(int confidence)
  1504.         {
  1505.                 BigInteger thisVal;
  1506.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1507.                         thisVal = -this;
  1508.                 else
  1509.                         thisVal = this;
  1510.                 if(thisVal.dataLength == 1)
  1511.                 {
  1512.                         // test small numbers
  1513.                         if(thisVal.data[0] == 0 || thisVal.data[0] == 1)
  1514.                                 return false;
  1515.                         else if(thisVal.data[0] == 2 || thisVal.data[0] == 3)
  1516.                                 return true;
  1517.                 }
  1518.                 if((thisVal.data[0] & 0x1) == 0)     // even numbers
  1519.                         return false;
  1520.                 // calculate values of s and t
  1521.                 BigInteger p_sub1 = thisVal - (new BigInteger(1));
  1522.                 int s = 0;
  1523.                 for(int index = 0; index < p_sub1.dataLength; index++)
  1524.                 {
  1525.                         uint mask = 0x01;
  1526.                         for(int i = 0; i < 32; i++)
  1527.                         {
  1528.                                 if((p_sub1.data[index] & mask) != 0)
  1529.                                 {
  1530.                                         index = p_sub1.dataLength;      // to break the outer loop
  1531.                                         break;
  1532.                                 }
  1533.                                 mask <<= 1;
  1534.                                 s++;
  1535.                         }
  1536.                 }
  1537.                 BigInteger t = p_sub1 >> s;
  1538.         int bits = thisVal.bitCount();
  1539.         BigInteger a = new BigInteger();
  1540.         Random rand = new Random();
  1541.         for(int round = 0; round < confidence; round++)
  1542.         {
  1543.         bool done = false;
  1544.         while(!done) // generate a < n
  1545.         {
  1546.         int testBits = 0;
  1547.         // make sure "a" has at least 2 bits
  1548.         while(testBits < 2)
  1549.         testBits = (int)(rand.NextDouble() * bits);
  1550.         a.genRandomBits(testBits, rand);
  1551.         int byteLen = a.dataLength;
  1552.                                 // make sure "a" is not 0
  1553.         if(byteLen > 1 || (byteLen == 1 && a.data[0] != 1))
  1554.         done = true;
  1555.         }
  1556.                         // check whether a factor exists (fix for version 1.03)
  1557.         BigInteger gcdTest = a.gcd(thisVal);
  1558.                         if(gcdTest.dataLength == 1 && gcdTest.data[0] != 1)
  1559.                                 return false;
  1560.                         BigInteger b = a.modPow(t, thisVal);
  1561.                         /*
  1562.                         Console.WriteLine("a = " + a.ToString(10));
  1563.                         Console.WriteLine("b = " + b.ToString(10));
  1564.                         Console.WriteLine("t = " + t.ToString(10));
  1565.                         Console.WriteLine("s = " + s);
  1566.                         */
  1567.                         bool result = false;
  1568.                         if(b.dataLength == 1 && b.data[0] == 1)         // a^t mod p = 1
  1569.                                 result = true;
  1570.                         for(int j = 0; result == false && j < s; j++)
  1571.                         {
  1572.                                 if(b == p_sub1)         // a^((2^j)*t) mod p = p-1 for some 0 <= j <= s-1
  1573.                                 {
  1574.                                         result = true;
  1575.                                         break;
  1576.                                 }
  1577.                                 b = (b * b) % thisVal;
  1578.                         }
  1579.                         if(result == false)
  1580.                                 return false;
  1581.                 }
  1582.         return true;
  1583.         }
  1584.         //***********************************************************************
  1585.         // Probabilistic prime test based on Solovay-Strassen (Euler Criterion)
  1586.         //
  1587.         // p is probably prime if for any a < p (a is not multiple of p),
  1588.         // a^((p-1)/2) mod p = J(a, p)
  1589.         //
  1590.         // where J is the Jacobi symbol.
  1591.         //
  1592.         // Otherwise, p is composite.
  1593.         //
  1594.         // Returns
  1595.         // -------
  1596.         // True if "this" is a Euler pseudoprime to randomly chosen
  1597.         // bases.  The number of chosen bases is given by the "confidence"
  1598.         // parameter.
  1599.         //
  1600.         // False if "this" is definitely NOT prime.
  1601.         //
  1602.         //***********************************************************************
  1603.         public bool SolovayStrassenTest(int confidence)
  1604.         {
  1605.                 BigInteger thisVal;
  1606.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1607.                         thisVal = -this;
  1608.                 else
  1609.                         thisVal = this;
  1610.                 if(thisVal.dataLength == 1)
  1611.                 {
  1612.                         // test small numbers
  1613.                         if(thisVal.data[0] == 0 || thisVal.data[0] == 1)
  1614.                                 return false;
  1615.                         else if(thisVal.data[0] == 2 || thisVal.data[0] == 3)
  1616.                                 return true;
  1617.                 }
  1618.                 if((thisVal.data[0] & 0x1) == 0)     // even numbers
  1619.                         return false;
  1620.         int bits = thisVal.bitCount();
  1621.         BigInteger a = new BigInteger();
  1622.         BigInteger p_sub1 = thisVal - 1;
  1623.         BigInteger p_sub1_shift = p_sub1 >> 1;
  1624.         Random rand = new Random();
  1625.         for(int round = 0; round < confidence; round++)
  1626.         {
  1627.         bool done = false;
  1628.         while(!done) // generate a < n
  1629.         {
  1630.         int testBits = 0;
  1631.         // make sure "a" has at least 2 bits
  1632.         while(testBits < 2)
  1633.         testBits = (int)(rand.NextDouble() * bits);
  1634.         a.genRandomBits(testBits, rand);
  1635.         int byteLen = a.dataLength;
  1636.                                 // make sure "a" is not 0
  1637.         if(byteLen > 1 || (byteLen == 1 && a.data[0] != 1))
  1638.         done = true;
  1639.         }
  1640.                         // check whether a factor exists (fix for version 1.03)
  1641.         BigInteger gcdTest = a.gcd(thisVal);
  1642.                         if(gcdTest.dataLength == 1 && gcdTest.data[0] != 1)
  1643.                                 return false;
  1644.         // calculate a^((p-1)/2) mod p
  1645.         BigInteger expResult = a.modPow(p_sub1_shift, thisVal);
  1646.         if(expResult == p_sub1)
  1647.                 expResult = -1;
  1648.                         // calculate Jacobi symbol
  1649.                         BigInteger jacob = Jacobi(a, thisVal);
  1650.                         //Console.WriteLine("a = " + a.ToString(10) + " b = " + thisVal.ToString(10));
  1651.                         //Console.WriteLine("expResult = " + expResult.ToString(10) + " Jacob = " + jacob.ToString(10));
  1652.                         // if they are different then it is not prime
  1653.                         if(expResult != jacob)
  1654.         return false;
  1655.         }
  1656.         return true;
  1657.         }
  1658.         //***********************************************************************
  1659.         // Implementation of the Lucas Strong Pseudo Prime test.
  1660.         //
  1661.         // Let n be an odd number with gcd(n,D) = 1, and n - J(D, n) = 2^s * d
  1662.         // with d odd and s >= 0.
  1663.         //
  1664.         // If Ud mod n = 0 or V2^r*d mod n = 0 for some 0 <= r < s, then n
  1665.         // is a strong Lucas pseudoprime with parameters (P, Q).  We select
  1666.         // P and Q based on Selfridge.
  1667.         //
  1668.         // Returns True if number is a strong Lucus pseudo prime.
  1669.         // Otherwise, returns False indicating that number is composite.
  1670.         //***********************************************************************
  1671.         public bool LucasStrongTest()
  1672.         {
  1673.                 BigInteger thisVal;
  1674.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1675.                         thisVal = -this;
  1676.                 else
  1677.                         thisVal = this;
  1678.                 if(thisVal.dataLength == 1)
  1679.                 {
  1680.                         // test small numbers
  1681.                         if(thisVal.data[0] == 0 || thisVal.data[0] == 1)
  1682.                                 return false;
  1683.                         else if(thisVal.data[0] == 2 || thisVal.data[0] == 3)
  1684.                                 return true;
  1685.                 }
  1686.                 if((thisVal.data[0] & 0x1) == 0)     // even numbers
  1687.                         return false;
  1688.                 return LucasStrongTestHelper(thisVal);
  1689.         }
  1690.         private bool LucasStrongTestHelper(BigInteger thisVal)
  1691.         {
  1692.                 // Do the test (selects D based on Selfridge)
  1693.                 // Let D be the first element of the sequence
  1694.                 // 5, -7, 9, -11, 13, ... for which J(D,n) = -1
  1695.                 // Let P = 1, Q = (1-D) / 4
  1696.                 long D = 5, sign = -1, dCount = 0;
  1697.                 bool done = false;
  1698.                 while(!done)
  1699.                 {
  1700.                         int Jresult = BigInteger.Jacobi(D, thisVal);
  1701.                         if(Jresult == -1)
  1702.                                 done = true;    // J(D, this) = 1
  1703.                         else
  1704.                         {
  1705.                                 if(Jresult == 0 && Math.Abs(D) < thisVal)       // divisor found
  1706.                                         return false;
  1707.                                 if(dCount == 20)
  1708.                                 {
  1709.                                         // check for square
  1710.                                         BigInteger root = thisVal.sqrt();
  1711.                                         if(root * root == thisVal)
  1712.                                                 return false;
  1713.                                 }
  1714.                                 //Console.WriteLine(D);
  1715.                                 D = (Math.Abs(D) + 2) * sign;
  1716.                                 sign = -sign;
  1717.                         }
  1718.                         dCount++;
  1719.                 }
  1720.                 long Q = (1 - D) >> 2;
  1721.                 /*
  1722.                 Console.WriteLine("D = " + D);
  1723.                 Console.WriteLine("Q = " + Q);
  1724.                 Console.WriteLine("(n,D) = " + thisVal.gcd(D));
  1725.                 Console.WriteLine("(n,Q) = " + thisVal.gcd(Q));
  1726.                 Console.WriteLine("J(D|n) = " + BigInteger.Jacobi(D, thisVal));
  1727.                 */
  1728.                 BigInteger p_add1 = thisVal + 1;
  1729.                 int s = 0;
  1730.                 for(int index = 0; index < p_add1.dataLength; index++)
  1731.                 {
  1732.                         uint mask = 0x01;
  1733.                         for(int i = 0; i < 32; i++)
  1734.                         {
  1735.                                 if((p_add1.data[index] & mask) != 0)
  1736.                                 {
  1737.                                         index = p_add1.dataLength;      // to break the outer loop
  1738.                                         break;
  1739.                                 }
  1740.                                 mask <<= 1;
  1741.                                 s++;
  1742.                         }
  1743.                 }
  1744.                 BigInteger t = p_add1 >> s;
  1745.                 // calculate constant = b^(2k) / m
  1746.                 // for Barrett Reduction
  1747.                 BigInteger constant = new BigInteger();
  1748.                 int nLen = thisVal.dataLength << 1;
  1749.                 constant.data[nLen] = 0x00000001;
  1750.                 constant.dataLength = nLen + 1;
  1751.                 constant = constant / thisVal;
  1752.                 BigInteger[] lucas = LucasSequenceHelper(1, Q, t, thisVal, constant, 0);
  1753.                 bool isPrime = false;
  1754.                 if((lucas[0].dataLength == 1 && lucas[0].data[0] == 0) ||
  1755.                    (lucas[1].dataLength == 1 && lucas[1].data[0] == 0))
  1756.                 {
  1757.                         // u(t) = 0 or V(t) = 0
  1758.                         isPrime = true;
  1759.                 }
  1760.                 for(int i = 1; i < s; i++)
  1761.                 {
  1762.                         if(!isPrime)
  1763.                         {
  1764.                                 // doubling of index
  1765.                                 lucas[1] = thisVal.BarrettReduction(lucas[1] * lucas[1], thisVal, constant);
  1766.                                 lucas[1] = (lucas[1] - (lucas[2] << 1)) % thisVal;
  1767.                                 //lucas[1] = ((lucas[1] * lucas[1]) - (lucas[2] << 1)) % thisVal;
  1768.                                 if((lucas[1].dataLength == 1 && lucas[1].data[0] == 0))
  1769.                                         isPrime = true;
  1770.                         }
  1771.                         lucas[2] = thisVal.BarrettReduction(lucas[2] * lucas[2], thisVal, constant);     //Q^k
  1772.                 }
  1773.                 if(isPrime)     // additional checks for composite numbers
  1774.                 {
  1775.                         // If n is prime and gcd(n, Q) == 1, then
  1776.                         // Q^((n+1)/2) = Q * Q^((n-1)/2) is congruent to (Q * J(Q, n)) mod n
  1777.                         BigInteger g = thisVal.gcd(Q);
  1778.                         if(g.dataLength == 1 && g.data[0] == 1)         // gcd(this, Q) == 1
  1779.                         {
  1780.                                 if((lucas[2].data[maxLength-1] & 0x80000000) != 0)
  1781.                                         lucas[2] += thisVal;
  1782.                                 BigInteger temp = (Q * BigInteger.Jacobi(Q, thisVal)) % thisVal;
  1783.                                 if((temp.data[maxLength-1] & 0x80000000) != 0)
  1784.                                         temp += thisVal;
  1785.                                 if(lucas[2] != temp)
  1786.                                         isPrime = false;
  1787.                         }
  1788.                 }
  1789.                 return isPrime;
  1790.         }
  1791.         //***********************************************************************
  1792.         // Determines whether a number is probably prime, using the Rabin-Miller's
  1793.         // test.  Before applying the test, the number is tested for divisibility
  1794.         // by primes < 2000
  1795.         //
  1796.         // Returns true if number is probably prime.
  1797.         //***********************************************************************
  1798.         public bool isProbablePrime(int confidence)
  1799.         {
  1800.                 BigInteger thisVal;
  1801.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1802.                         thisVal = -this;
  1803.                 else
  1804.                         thisVal = this;
  1805.                 // test for divisibility by primes < 2000
  1806.                 for(int p = 0; p < primesBelow2000.Length; p++)
  1807.                 {
  1808.                         BigInteger divisor = primesBelow2000[p];
  1809.                         if(divisor >= thisVal)
  1810.                                 break;
  1811.                         BigInteger resultNum = thisVal % divisor;
  1812.                         if(resultNum.IntValue() == 0)
  1813.                         {
  1814.                                 /*
  1815. Console.WriteLine("Not prime!  Divisible by {0}n",
  1816.                                                   primesBelow2000[p]);
  1817.                                 */
  1818.                                 return false;
  1819.                         }
  1820.                 }
  1821.                 if(thisVal.RabinMillerTest(confidence))
  1822.                         return true;
  1823.                 else
  1824.                 {
  1825.                         //Console.WriteLine("Not prime!  Failed primality testn");
  1826.                         return false;
  1827.                 }
  1828.         }
  1829.         //***********************************************************************
  1830.         // Determines whether this BigInteger is probably prime using a
  1831.         // combination of base 2 strong pseudoprime test and Lucas strong
  1832.         // pseudoprime test.
  1833.         //
  1834.         // The sequence of the primality test is as follows,
  1835.         //
  1836.         // 1) Trial divisions are carried out using prime numbers below 2000.
  1837.         //    if any of the primes divides this BigInteger, then it is not prime.
  1838.         //
  1839.         // 2) Perform base 2 strong pseudoprime test.  If this BigInteger is a
  1840.         //    base 2 strong pseudoprime, proceed on to the next step.
  1841.         //
  1842.         // 3) Perform strong Lucas pseudoprime test.
  1843.         //
  1844.         // Returns True if this BigInteger is both a base 2 strong pseudoprime
  1845.         // and a strong Lucas pseudoprime.
  1846.         //
  1847.         // For a detailed discussion of this primality test, see [6].
  1848.         //
  1849.         //***********************************************************************
  1850.         public bool isProbablePrime()
  1851.         {
  1852.                 BigInteger thisVal;
  1853.                 if((this.data[maxLength-1] & 0x80000000) != 0)        // negative
  1854.                         thisVal = -this;
  1855.                 else
  1856.                         thisVal = this;
  1857.                 if(thisVal.dataLength == 1)
  1858.                 {
  1859.                         // test small numbers
  1860.                         if(thisVal.data[0] == 0 || thisVal.data[0] == 1)
  1861.                                 return false;
  1862.                         else if(thisVal.data[0] == 2 || thisVal.data[0] == 3)
  1863.                                 return true;
  1864.                 }
  1865.                 if((thisVal.data[0] & 0x1) == 0)     // even numbers
  1866.                         return false;
  1867.                 // test for divisibility by primes < 2000
  1868.                 for(int p = 0; p < primesBelow2000.Length; p++)
  1869.                 {
  1870.                         BigInteger divisor = primesBelow2000[p];
  1871.                         if(divisor >= thisVal)
  1872.                                 break;
  1873.                         BigInteger resultNum = thisVal % divisor;
  1874.                         if(resultNum.IntValue() == 0)
  1875.                         {
  1876. //Console.WriteLine("Not prime!  Divisible by {0}n",
  1877.                                 //                  primesBelow2000[p]);
  1878.                                 return false;
  1879.                         }
  1880.                 }
  1881.                 // Perform BASE 2 Rabin-Miller Test
  1882.                 // calculate values of s and t
  1883.                 BigInteger p_sub1 = thisVal - (new BigInteger(1));
  1884.                 int s = 0;
  1885.                 for(int index = 0; index < p_sub1.dataLength; index++)
  1886.                 {
  1887.                         uint mask = 0x01;
  1888.                         for(int i = 0; i < 32; i++)
  1889.                         {
  1890.                                 if((p_sub1.data[index] & mask) != 0)
  1891.                                 {
  1892.                                         index = p_sub1.dataLength;      // to break the outer loop
  1893.                                         break;
  1894.                                 }
  1895.                                 mask <<= 1;
  1896.                                 s++;
  1897.                         }
  1898.                 }
  1899.                 BigInteger t = p_sub1 >> s;
  1900.         int bits = thisVal.bitCount();
  1901.         BigInteger a = 2;
  1902.                 // b = a^t mod p
  1903.                 BigInteger b = a.modPow(t, thisVal);
  1904.                 bool result = false;
  1905.                 if(b.dataLength == 1 && b.data[0] == 1)         // a^t mod p = 1
  1906.                         result = true;
  1907.                 for(int j = 0; result == false && j < s; j++)
  1908.                 {
  1909.                         if(b == p_sub1)         // a^((2^j)*t) mod p = p-1 for some 0 <= j <= s-1
  1910.                         {
  1911.                                 result = true;
  1912.                                 break;
  1913.                         }
  1914.                         b = (b * b) % thisVal;
  1915.                 }
  1916.                 // if number is strong pseudoprime to base 2, then do a strong lucas test
  1917.                 if(result)
  1918.                 result = LucasStrongTestHelper(thisVal);
  1919.                 return result;
  1920.         }
  1921.         //***********************************************************************
  1922.         // Returns the lowest 4 bytes of the BigInteger as an int.
  1923.         //***********************************************************************
  1924.         public int IntValue()
  1925.         {
  1926.                 return (int)data[0];
  1927.         }
  1928.         //***********************************************************************
  1929.         // Returns the lowest 8 bytes of the BigInteger as a long.
  1930.         //***********************************************************************
  1931.         public long LongValue()
  1932.         {
  1933.                 long val = 0;
  1934.                 val = (long)data[0];
  1935.                 try
  1936.                 {       // exception if maxLength = 1
  1937.                         val |= (long)data[1] << 32;
  1938.                 }
  1939.                 catch(Exception)
  1940.                 {
  1941.                         if((data[0] & 0x80000000) != 0) // negative
  1942.                                 val = (int)data[0];
  1943.                 }
  1944.                 return val;
  1945.         }
  1946.         //***********************************************************************
  1947.         // Computes the Jacobi Symbol for a and b.
  1948.         // Algorithm adapted from [3] and [4] with some optimizations
  1949.         //***********************************************************************
  1950.         public static int Jacobi(BigInteger a, BigInteger b)
  1951.         {
  1952.                 // Jacobi defined only for odd integers
  1953.                 if((b.data[0] & 0x1) == 0)
  1954.                         throw (new ArgumentException("Jacobi defined only for odd integers."));
  1955.                 if(a >= b)      a %= b;
  1956.                 if(a.dataLength == 1 && a.data[0] == 0)      return 0;  // a == 0
  1957.                 if(a.dataLength == 1 && a.data[0] == 1)      return 1;  // a == 1
  1958.                 if(a < 0)
  1959.                 {
  1960.                         if( (((b-1).data[0]) & 0x2) == 0)       //if( (((b-1) >> 1).data[0] & 0x1) == 0)
  1961.                                 return Jacobi(-a, b);
  1962.                         else
  1963.                                 return -Jacobi(-a, b);
  1964.                 }
  1965.                 int e = 0;
  1966.                 for(int index = 0; index < a.dataLength; index++)
  1967.                 {
  1968.                         uint mask = 0x01;
  1969.                         for(int i = 0; i < 32; i++)
  1970.                         {
  1971.                                 if((a.data[index] & mask) != 0)
  1972.                                 {
  1973.                                         index = a.dataLength;      // to break the outer loop
  1974.                                         break;
  1975.                                 }
  1976.                                 mask <<= 1;
  1977.                                 e++;
  1978.                         }
  1979.                 }
  1980.                 BigInteger a1 = a >> e;
  1981.                 int s = 1;
  1982.                 if((e & 0x1) != 0 && ((b.data[0] & 0x7) == 3 || (b.data[0] & 0x7) == 5))
  1983.                         s = -1;
  1984.                 if((b.data[0] & 0x3) == 3 && (a1.data[0] & 0x3) == 3)
  1985.                         s = -s;
  1986.                 if(a1.dataLength == 1 && a1.data[0] == 1)
  1987.                         return s;
  1988.                 else
  1989.                         return (s * Jacobi(b % a1, a1));
  1990.         }
  1991.         //***********************************************************************
  1992.         // Generates a positive BigInteger that is probably prime.
  1993.         //***********************************************************************
  1994.         public static BigInteger genPseudoPrime(int bits, int confidence, Random rand)
  1995.         {
  1996.         BigInteger result = new BigInteger();
  1997.         bool done = false;
  1998.         while(!done)
  1999.         {
  2000.         result.genRandomBits(bits, rand);
  2001.         result.data[0] |= 0x01; // make it odd
  2002.         // prime test
  2003.         done = result.isProbablePrime(confidence);
  2004.         }
  2005.         return result;
  2006.         }
  2007.         //***********************************************************************
  2008.         // Generates a random number with the specified number of bits such
  2009.         // that gcd(number, this) = 1
  2010.         //***********************************************************************
  2011.         public BigInteger genCoPrime(int bits, Random rand)
  2012.         {
  2013.         bool done = false;
  2014.         BigInteger result = new BigInteger();
  2015.         while(!done)
  2016.         {
  2017.                 result.genRandomBits(bits, rand);
  2018.                 //Console.WriteLine(result.ToString(16));
  2019.         // gcd test
  2020.         BigInteger g = result.gcd(this);
  2021. if(g.dataLength == 1 && g.data[0] == 1)
  2022.                                 done = true;
  2023.         }
  2024.         return result;
  2025.         }
  2026.         //***********************************************************************
  2027.         // Returns the modulo inverse of this.  Throws ArithmeticException if
  2028.         // the inverse does not exist.  (i.e. gcd(this, modulus) != 1)
  2029.         //***********************************************************************
  2030.         public BigInteger modInverse(BigInteger modulus)
  2031.         {
  2032.                 BigInteger[] p = { 0, 1 };
  2033.                 BigInteger[] q = new BigInteger[2];    // quotients
  2034.                 BigInteger[] r = { 0, 0 };             // remainders
  2035.                 int step = 0;
  2036.                 BigInteger a = modulus;
  2037.                 BigInteger b = this;
  2038.                 while(b.dataLength > 1 || (b.dataLength == 1 && b.data[0] != 0))
  2039.                 {
  2040.                         BigInteger quotient = new BigInteger();
  2041.                         BigInteger remainder = new BigInteger();
  2042.                         if(step > 1)
  2043.                         {
  2044.                                 BigInteger pval = (p[0] - (p[1] * q[0])) % modulus;
  2045.                                 p[0] = p[1];
  2046.                                 p[1] = pval;
  2047.                         }
  2048.                         if(b.dataLength == 1)
  2049.                                 singleByteDivide(a, b, quotient, remainder);
  2050.                         else
  2051.                                 multiByteDivide(a, b, quotient, remainder);
  2052.                         /*
  2053.                         Console.WriteLine(quotient.dataLength);
  2054.                         Console.WriteLine("{0} = {1}({2}) + {3}  p = {4}", a.ToString(10),
  2055.                                           b.ToString(10), quotient.ToString(10), remainder.ToString(10),
  2056.                                           p[1].ToString(10));
  2057.                         */
  2058.                         q[0] = q[1];
  2059.                         r[0] = r[1];
  2060.                         q[1] = quotient; r[1] = remainder;
  2061.                         a = b;
  2062.                         b = remainder;
  2063.                         step++;
  2064.                 }
  2065.                 if(r[0].dataLength > 1 || (r[0].dataLength == 1 && r[0].data[0] != 1))
  2066.                         throw (new ArithmeticException("No inverse!"));
  2067.                 BigInteger result = ((p[0] - (p[1] * q[0])) % modulus);
  2068.                 if((result.data[maxLength - 1] & 0x80000000) != 0)
  2069.                         result += modulus;  // get the least positive modulus
  2070.                 return result;
  2071.         }
  2072.         //***********************************************************************
  2073.         // Returns the value of the BigInteger as a byte array.  The lowest
  2074.         // index contains the MSB.
  2075.         //***********************************************************************
  2076.         public byte[] getBytes()
  2077.         {
  2078.                 int numBits = bitCount();
  2079.                 byte[] result = null;
  2080.                 if(numBits == 0)
  2081.                 {
  2082.                         result = new byte[1];
  2083.                         result[0] = 0;
  2084.                 }
  2085.                 else
  2086.                 {
  2087.                         int numBytes = numBits >> 3;
  2088.                         if((numBits & 0x7) != 0)
  2089.                                 numBytes++;
  2090.                         result = new byte[numBytes];
  2091.                         //Console.WriteLine(result.Length);
  2092.                         int numBytesInWord = numBytes & 0x3;
  2093.                         if(numBytesInWord == 0)
  2094.                                 numBytesInWord = 4;
  2095.                         int pos = 0;
  2096.                         for(int i = dataLength - 1; i >= 0; i--)
  2097.                         {
  2098.                                 uint val = data[i];
  2099.                                 for(int j = numBytesInWord - 1; j >= 0; j--)
  2100.                                 {
  2101.                                         result[pos+j] = (byte)(val & 0xFF);
  2102.                                         val >>= 8;
  2103.                                 }
  2104.                                 pos += numBytesInWord;
  2105.                                 numBytesInWord = 4;
  2106.                         }
  2107.                 }
  2108.                 return result;
  2109.         }
  2110.         //***********************************************************************
  2111.         // Sets the value of the specified bit to 1
  2112.         // The Least Significant Bit position is 0.
  2113.         //***********************************************************************
  2114.         public void setBit(uint bitNum)
  2115.         {
  2116.                 uint bytePos = bitNum >> 5;             // divide by 32
  2117.                 byte bitPos = (byte)(bitNum & 0x1F);    // get the lowest 5 bits
  2118.                 uint mask = (uint)1 << bitPos;
  2119.                 this.data[bytePos] |= mask;
  2120.                 if(bytePos >= this.dataLength)
  2121.                         this.dataLength = (int)bytePos + 1;
  2122.         }
  2123.         //***********************************************************************
  2124.         // Sets the value of the specified bit to 0
  2125.         // The Least Significant Bit position is 0.
  2126.         //***********************************************************************
  2127.         public void unsetBit(uint bitNum)
  2128.         {
  2129.                 uint bytePos = bitNum >> 5;
  2130.                 if(bytePos < this.dataLength)
  2131.                 {
  2132.                         byte bitPos = (byte)(bitNum & 0x1F);
  2133.                         uint mask = (uint)1 << bitPos;
  2134.                         uint mask2 = 0xFFFFFFFF ^ mask;
  2135.                         this.data[bytePos] &= mask2;
  2136.                         if(this.dataLength > 1 && this.data[this.dataLength - 1] == 0)
  2137.                                 this.dataLength--;
  2138.                 }
  2139.         }
  2140.         //***********************************************************************
  2141.         // Returns a value that is equivalent to the integer square root
  2142.         // of the BigInteger.
  2143.         //
  2144.         // The integer square root of "this" is defined as the largest integer n
  2145.         // such that (n * n) <= this
  2146.         //
  2147.         //***********************************************************************
  2148.         public BigInteger sqrt()
  2149.         {
  2150.                 uint numBits = (uint)this.bitCount();
  2151.                 if((numBits & 0x1) != 0)        // odd number of bits
  2152.                         numBits = (numBits >> 1) + 1;
  2153.                 else
  2154.                         numBits = (numBits >> 1);
  2155.                 uint bytePos = numBits >> 5;
  2156.                 byte bitPos = (byte)(numBits & 0x1F);
  2157.                 uint mask;
  2158.                 BigInteger result = new BigInteger();
  2159.                 if(bitPos == 0)
  2160.                         mask = 0x80000000;
  2161.                 else
  2162.                 {
  2163.                         mask = (uint)1 << bitPos;
  2164.                         bytePos++;
  2165.                 }
  2166.                 result.dataLength = (int)bytePos;
  2167.                 for(int i = (int)bytePos - 1; i >= 0; i--)
  2168.                 {
  2169.                         while(mask != 0)
  2170.                         {
  2171.                                 // guess
  2172.                                 result.data[i] ^= mask;
  2173.                                 // undo the guess if its square is larger than this
  2174.                                 if((result * result) > this)
  2175.                                         result.data[i] ^= mask;
  2176.                                 mask >>= 1;
  2177.                         }
  2178.                         mask = 0x80000000;
  2179.                 }
  2180.                 return result;
  2181.         }
  2182.         //***********************************************************************
  2183.         // Returns the k_th number in the Lucas Sequence reduced modulo n.
  2184.         //
  2185.         // Uses index doubling to speed up the process.  For example, to calculate V(k),
  2186.         // we maintain two numbers in the sequence V(n) and V(n+1).
  2187.         //
  2188.         // To obtain V(2n), we use the identity
  2189.         //      V(2n) = (V(n) * V(n)) - (2 * Q^n)
  2190.         // To obtain V(2n+1), we first write it as
  2191.         //      V(2n+1) = V((n+1) + n)
  2192.         // and use the identity
  2193.         //      V(m+n) = V(m) * V(n) - Q * V(m-n)
  2194.         // Hence,
  2195.         //      V((n+1) + n) = V(n+1) * V(n) - Q^n * V((n+1) - n)
  2196.         //                   = V(n+1) * V(n) - Q^n * V(1)
  2197.         //                   = V(n+1) * V(n) - Q^n * P
  2198.         //
  2199.         // We use k in its binary expansion and perform index doubling for each
  2200.         // bit position.  For each bit position that is set, we perform an
  2201.         // index doubling followed by an index addition.  This means that for V(n),
  2202.         // we need to update it to V(2n+1).  For V(n+1), we need to update it to
  2203.         // V((2n+1)+1) = V(2*(n+1))
  2204.         //
  2205.         // This function returns
  2206.         // [0] = U(k)
  2207.         // [1] = V(k)
  2208.         // [2] = Q^n
  2209.         //
  2210.         // Where U(0) = 0 % n, U(1) = 1 % n
  2211.         //       V(0) = 2 % n, V(1) = P % n
  2212.         //***********************************************************************
  2213.         public static BigInteger[] LucasSequence(BigInteger P, BigInteger Q,
  2214.                                                  BigInteger k, BigInteger n)
  2215.         {
  2216.                 if(k.dataLength == 1 && k.data[0] == 0)
  2217.                 {
  2218.                         BigInteger[] result = new BigInteger[3];
  2219.                         result[0] = 0; result[1] = 2 % n; result[2] = 1 % n;
  2220.                         return result;
  2221.                 }
  2222.                 // calculate constant = b^(2k) / m
  2223.                 // for Barrett Reduction
  2224.                 BigInteger constant = new BigInteger();
  2225.                 int nLen = n.dataLength << 1;
  2226.                 constant.data[nLen] = 0x00000001;
  2227.                 constant.dataLength = nLen + 1;
  2228.                 constant = constant / n;
  2229.                 // calculate values of s and t
  2230.                 int s = 0;
  2231.                 for(int index = 0; index < k.dataLength; index++)
  2232.                 {
  2233.                         uint mask = 0x01;
  2234.                         for(int i = 0; i < 32; i++)
  2235.                         {
  2236.                                 if((k.data[index] & mask) != 0)
  2237.                                 {
  2238.                                         index = k.dataLength;      // to break the outer loop
  2239.                                         break;
  2240.                                 }
  2241.                                 mask <<= 1;
  2242.                                 s++;
  2243.                         }
  2244.                 }
  2245.                 BigInteger t = k >> s;
  2246.                 //Console.WriteLine("s = " + s + " t = " + t);
  2247.                 return LucasSequenceHelper(P, Q, t, n, constant, s);
  2248.         }
  2249.         //***********************************************************************
  2250.         // Performs the calculation of the kth term in the Lucas Sequence.
  2251.         // For details of the algorithm, see reference [9].
  2252.         //
  2253.         // k must be odd.  i.e LSB == 1
  2254.         //***********************************************************************
  2255.         private static BigInteger[] LucasSequenceHelper(BigInteger P, BigInteger Q,
  2256.                                                         BigInteger k, BigInteger n,
  2257.                                                         BigInteger constant, int s)
  2258.         {
  2259.                 BigInteger[] result = new BigInteger[3];
  2260.                 if((k.data[0] & 0x00000001) == 0)
  2261.                         throw (new ArgumentException("Argument k must be odd."));
  2262.                 int numbits = k.bitCount();
  2263.                 uint mask = (uint)0x1 << ((numbits & 0x1F) - 1);
  2264.                 // v = v0, v1 = v1, u1 = u1, Q_k = Q^0
  2265.                 BigInteger v = 2 % n, Q_k = 1 % n,
  2266.                            v1 = P % n, u1 = Q_k;
  2267.                 bool flag = true;
  2268.                 for(int i = k.dataLength - 1; i >= 0 ; i--)     // iterate on the binary expansion of k
  2269.                 {
  2270.                         //Console.WriteLine("round");
  2271.                         while(mask != 0)
  2272.                         {
  2273.                                 if(i == 0 && mask == 0x00000001)        // last bit
  2274.                                         break;
  2275.                                 if((k.data[i] & mask) != 0)             // bit is set
  2276.                                 {
  2277.                                         // index doubling with addition
  2278.                                         u1 = (u1 * v1) % n;
  2279.                                         v = ((v * v1) - (P * Q_k)) % n;
  2280.                                         v1 = n.BarrettReduction(v1 * v1, n, constant);
  2281.                                         v1 = (v1 - ((Q_k * Q) << 1)) % n;
  2282.                                         if(flag)
  2283.                                                 flag = false;
  2284.                                         else
  2285.                                                 Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
  2286.                                         Q_k = (Q_k * Q) % n;
  2287.                                 }
  2288.                                 else
  2289.                                 {
  2290.                                         // index doubling
  2291.                                         u1 = ((u1 * v) - Q_k) % n;
  2292.                                         v1 = ((v * v1) - (P * Q_k)) % n;
  2293.                                         v = n.BarrettReduction(v * v, n, constant);
  2294.                                         v = (v - (Q_k << 1)) % n;
  2295.                                         if(flag)
  2296.                                         {
  2297.                                                 Q_k = Q % n;
  2298.                                                 flag = false;
  2299.                                         }
  2300.                                         else
  2301.                                                 Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
  2302.                                }
  2303.                                mask >>= 1;
  2304.                         }
  2305.                         mask = 0x80000000;
  2306.                 }
  2307.                 // at this point u1 = u(n+1) and v = v(n)
  2308.                 // since the last bit always 1, we need to transform u1 to u(2n+1) and v to v(2n+1)
  2309.                 u1 = ((u1 * v) - Q_k) % n;
  2310.                 v = ((v * v1) - (P * Q_k)) % n;
  2311.                 if(flag)
  2312.                         flag = false;
  2313.                 else
  2314.                         Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
  2315.                 Q_k = (Q_k * Q) % n;
  2316.                 for(int i = 0; i < s; i++)
  2317.                 {
  2318.                         // index doubling
  2319.                         u1 = (u1 * v) % n;
  2320.                         v = ((v * v) - (Q_k << 1)) % n;
  2321.                         if(flag)
  2322.                         {
  2323.                                 Q_k = Q % n;
  2324.                                 flag = false;
  2325.                         }
  2326.                         else
  2327.                                 Q_k = n.BarrettReduction(Q_k * Q_k, n, constant);
  2328.                 }
  2329.                 result[0] = u1;
  2330.                 result[1] = v;
  2331.                 result[2] = Q_k;
  2332.                 return result;
  2333.         }
  2334.         //***********************************************************************
  2335.         // Tests the correct implementation of the /, %, * and + operators
  2336.         //***********************************************************************
  2337.         public static void MulDivTest(int rounds)
  2338.         {
  2339.                 Random rand = new Random();
  2340.         byte[] val = new byte[64];
  2341.         byte[] val2 = new byte[64];
  2342.         for(int count = 0; count < rounds; count++)
  2343.         {
  2344.                 // generate 2 numbers of random length
  2345.         int t1 = 0;
  2346.         while(t1 == 0)
  2347.         t1 = (int)(rand.NextDouble() * 65);
  2348.         int t2 = 0;
  2349.         while(t2 == 0)
  2350.         t2 = (int)(rand.NextDouble() * 65);
  2351.         bool done = false;
  2352.         while(!done)
  2353.         {
  2354.         for(int i = 0; i < 64; i++)
  2355.         {
  2356.         if(i < t1)
  2357.         val[i] = (byte)(rand.NextDouble() * 256);
  2358.         else
  2359.         val[i] = 0;
  2360.         if(val[i] != 0)
  2361.         done = true;
  2362.         }
  2363.         }
  2364.         done = false;
  2365.         while(!done)
  2366.         {
  2367.         for(int i = 0; i < 64; i++)
  2368.         {
  2369.         if(i < t2)
  2370.         val2[i] = (byte)(rand.NextDouble() * 256);
  2371.         else
  2372.         val2[i] = 0;
  2373.         if(val2[i] != 0)
  2374.         done = true;
  2375.         }
  2376.         }
  2377.         while(val[0] == 0)
  2378.                 val[0] = (byte)(rand.NextDouble() * 256);
  2379.         while(val2[0] == 0)
  2380.                 val2[0] = (byte)(rand.NextDouble() * 256);
  2381.                         Console.WriteLine(count);
  2382.         BigInteger bn1 = new BigInteger(val, t1);
  2383.         BigInteger bn2 = new BigInteger(val2, t2);
  2384.                         // Determine the quotient and remainder by dividing
  2385.                         // the first number by the second.
  2386.         BigInteger bn3 = bn1 / bn2;
  2387.         BigInteger bn4 = bn1 % bn2;
  2388.         // Recalculate the number
  2389.         BigInteger bn5 = (bn3 * bn2) + bn4;
  2390.                         // Make sure they're the same
  2391.          if(bn5 != bn1)
  2392.          {
  2393.          Console.WriteLine("Error at " + count);
  2394.                                 Console.WriteLine(bn1 + "n");
  2395.         Console.WriteLine(bn2 + "n");
  2396.         Console.WriteLine(bn3 + "n");
  2397.                                 Console.WriteLine(bn4 + "n");
  2398.         Console.WriteLine(bn5 + "n");
  2399.         return;
  2400.         }
  2401.         }
  2402.         }
  2403.         //***********************************************************************
  2404.         // Tests the correct implementation of the modulo exponential function
  2405.         // using RSA encryption and decryption (using pre-computed encryption and
  2406.         // decryption keys).
  2407.         //***********************************************************************
  2408.         public static void RSATest(int rounds)
  2409.         {
  2410.                 Random rand = new Random(1);
  2411.         byte[] val = new byte[64];
  2412.         // private and public key
  2413.                 BigInteger bi_e = new BigInteger("a932b948feed4fb2b692609bd22164fc9edb59fae7880cc1eaff7b3c9626b7e5b241c27a974833b2622ebe09beb451917663d47232488f23a117fc97720f1e7", 16);
  2414.                 BigInteger bi_d = new BigInteger("4adf2f7a89da93248509347d2ae506d683dd3a16357e859a980c4f77a4e2f7a01fae289f13a851df6e9db5adaa60bfd2b162bbbe31f7c8f828261a6839311929d2cef4f864dde65e556ce43c89bbbf9f1ac5511315847ce9cc8dc92470a747b8792d6a83b0092d2e5ebaf852c85cacf34278efa99160f2f8aa7ee7214de07b7", 16);
  2415.                 BigInteger bi_n = new BigInteger("e8e77781f36a7b3188d711c2190b560f205a52391b3479cdb99fa010745cbeba5f2adc08e1de6bf38398a0487c4a73610d94ec36f17f3f46ad75e17bc1adfec99839589f45f95ccc94cb2a5c500b477eb3323d8cfab0c8458c96f0147a45d27e45a4d11d54d77684f65d48f15fafcc1ba208e71e921b9bd9017c16a5231af7f", 16);
  2416.                 Console.WriteLine("e =n" + bi_e.ToString(10));
  2417.                 Console.WriteLine("nd =n" + bi_d.ToString(10));
  2418.                 Console.WriteLine("nn =n" + bi_n.ToString(10) + "n");
  2419.         for(int count = 0; count < rounds; count++)
  2420.         {
  2421.                 // generate data of random length
  2422.         int t1 = 0;
  2423.         while(t1 == 0)
  2424.         t1 = (int)(rand.NextDouble() * 65);
  2425.         bool done = false;
  2426.         while(!done)
  2427.         {
  2428.         for(int i = 0; i < 64; i++)
  2429.         {
  2430.         if(i < t1)
  2431.         val[i] = (byte)(rand.NextDouble() * 256);
  2432.         else
  2433.         val[i] = 0;
  2434.         if(val[i] != 0)
  2435.         done = true;
  2436.         }
  2437.         }
  2438.         while(val[0] == 0)
  2439.                 val[0] = (byte)(rand.NextDouble() * 256);
  2440.                         Console.Write("Round = " + count);
  2441.                         // encrypt and decrypt data
  2442.         BigInteger bi_data = new BigInteger(val, t1);
  2443.                         BigInteger bi_encrypted = bi_data.modPow(bi_e, bi_n);
  2444.                         BigInteger bi_decrypted = bi_encrypted.modPow(bi_d, bi_n);
  2445.                         // compare
  2446.                         if(bi_decrypted != bi_data)
  2447.          {
  2448.          Console.WriteLine("nError at round " + count);
  2449.                                 Console.WriteLine(bi_data + "n");
  2450.         return;
  2451.         }
  2452.         Console.WriteLine(" <PASSED>.");
  2453.         }
  2454.         }
  2455.         //***********************************************************************
  2456.         // Tests the correct implementation of the modulo exponential and
  2457.         // inverse modulo functions using RSA encryption and decryption.  The two
  2458.         // pseudoprimes p and q are fixed, but the two RSA keys are generated
  2459.         // for each round of testing.
  2460.         //***********************************************************************
  2461.         public static void RSATest2(int rounds)
  2462.         {
  2463.                 Random rand = new Random();
  2464.         byte[] val = new byte[64];
  2465.                 byte[] pseudoPrime1 = {
  2466.                         (byte)0x85, (byte)0x84, (byte)0x64, (byte)0xFD, (byte)0x70, (byte)0x6A,
  2467.                         (byte)0x9F, (byte)0xF0, (byte)0x94, (byte)0x0C, (byte)0x3E, (byte)0x2C,
  2468.                         (byte)0x74, (byte)0x34, (byte)0x05, (byte)0xC9, (byte)0x55, (byte)0xB3,
  2469.                         (byte)0x85, (byte)0x32, (byte)0x98, (byte)0x71, (byte)0xF9, (byte)0x41,
  2470.                         (byte)0x21, (byte)0x5F, (byte)0x02, (byte)0x9E, (byte)0xEA, (byte)0x56,
  2471.                         (byte)0x8D, (byte)0x8C, (byte)0x44, (byte)0xCC, (byte)0xEE, (byte)0xEE,
  2472.                         (byte)0x3D, (byte)0x2C, (byte)0x9D, (byte)0x2C, (byte)0x12, (byte)0x41,
  2473.                         (byte)0x1E, (byte)0xF1, (byte)0xC5, (byte)0x32, (byte)0xC3, (byte)0xAA,
  2474.                         (byte)0x31, (byte)0x4A, (byte)0x52, (byte)0xD8, (byte)0xE8, (byte)0xAF,
  2475.                         (byte)0x42, (byte)0xF4, (byte)0x72, (byte)0xA1, (byte)0x2A, (byte)0x0D,
  2476.                         (byte)0x97, (byte)0xB1, (byte)0x31, (byte)0xB3,
  2477.                 };
  2478.                 byte[] pseudoPrime2 = {
  2479.                         (byte)0x99, (byte)0x98, (byte)0xCA, (byte)0xB8, (byte)0x5E, (byte)0xD7,
  2480.                         (byte)0xE5, (byte)0xDC, (byte)0x28, (byte)0x5C, (byte)0x6F, (byte)0x0E,
  2481.                         (byte)0x15, (byte)0x09, (byte)0x59, (byte)0x6E, (byte)0x84, (byte)0xF3,
  2482.                         (byte)0x81, (byte)0xCD, (byte)0xDE, (byte)0x42, (byte)0xDC, (byte)0x93,
  2483.                         (byte)0xC2, (byte)0x7A, (byte)0x62, (byte)0xAC, (byte)0x6C, (byte)0xAF,
  2484.                         (byte)0xDE, (byte)0x74, (byte)0xE3, (byte)0xCB, (byte)0x60, (byte)0x20,
  2485.                         (byte)0x38, (byte)0x9C, (byte)0x21, (byte)0xC3, (byte)0xDC, (byte)0xC8,
  2486.                         (byte)0xA2, (byte)0x4D, (byte)0xC6, (byte)0x2A, (byte)0x35, (byte)0x7F,
  2487.                         (byte)0xF3, (byte)0xA9, (byte)0xE8, (byte)0x1D, (byte)0x7B, (byte)0x2C,
  2488.                         (byte)0x78, (byte)0xFA, (byte)0xB8, (byte)0x02, (byte)0x55, (byte)0x80,
  2489.                         (byte)0x9B, (byte)0xC2, (byte)0xA5, (byte)0xCB,
  2490.                 };
  2491.                 BigInteger bi_p = new BigInteger(pseudoPrime1);
  2492.                 BigInteger bi_q = new BigInteger(pseudoPrime2);
  2493.                 BigInteger bi_pq = (bi_p-1)*(bi_q-1);
  2494.                 BigInteger bi_n = bi_p * bi_q;
  2495.         for(int count = 0; count < rounds; count++)
  2496.         {
  2497.                 // generate private and public key
  2498.                         BigInteger bi_e = bi_pq.genCoPrime(512, rand);
  2499.                         BigInteger bi_d = bi_e.modInverse(bi_pq);
  2500.                         Console.WriteLine("ne =n" + bi_e.ToString(10));
  2501.                         Console.WriteLine("nd =n" + bi_d.ToString(10));
  2502.                         Console.WriteLine("nn =n" + bi_n.ToString(10) + "n");
  2503.                 // generate data of random length
  2504.         int t1 = 0;
  2505.         while(t1 == 0)
  2506.         t1 = (int)(rand.NextDouble() * 65);
  2507.         bool done = false;
  2508.         while(!done)
  2509.         {
  2510.         for(int i = 0; i < 64; i++)
  2511.         {
  2512.         if(i < t1)
  2513.         val[i] = (byte)(rand.NextDouble() * 256);
  2514.         else
  2515.         val[i] = 0;
  2516.         if(val[i] != 0)
  2517.         done = true;
  2518.         }
  2519.         }
  2520.         while(val[0] == 0)
  2521.                 val[0] = (byte)(rand.NextDouble() * 256);
  2522.                         Console.Write("Round = " + count);
  2523.                         // encrypt and decrypt data
  2524.         BigInteger bi_data = new BigInteger(val, t1);
  2525.                         BigInteger bi_encrypted = bi_data.modPow(bi_e, bi_n);
  2526.                         BigInteger bi_decrypted = bi_encrypted.modPow(bi_d, bi_n);
  2527.                         // compare
  2528.                         if(bi_decrypted != bi_data)
  2529.          {
  2530.          Console.WriteLine("nError at round " + count);
  2531.                                 Console.WriteLine(bi_data + "n");
  2532.         return;
  2533.         }
  2534.         Console.WriteLine(" <PASSED>.");
  2535.         }
  2536.         }
  2537.         //***********************************************************************
  2538.         // Tests the correct implementation of sqrt() method.
  2539.         //***********************************************************************
  2540.         public static void SqrtTest(int rounds)
  2541.         {
  2542.                 Random rand = new Random();
  2543.         for(int count = 0; count < rounds; count++)
  2544.         {
  2545.                 // generate data of random length
  2546.         int t1 = 0;
  2547.         while(t1 == 0)
  2548.         t1 = (int)(rand.NextDouble() * 1024);
  2549.                         Console.Write("Round = " + count);
  2550.                         BigInteger a = new BigInteger();
  2551.                         a.genRandomBits(t1, rand);
  2552.                         BigInteger b = a.sqrt();
  2553.                         BigInteger c = (b+1)*(b+1);
  2554.                         // check that b is the largest integer such that b*b <= a
  2555.                         if(c <= a)
  2556.          {
  2557.          Console.WriteLine("nError at round " + count);
  2558.                                 Console.WriteLine(a + "n");
  2559.         return;
  2560.         }
  2561.         Console.WriteLine(" <PASSED>.");
  2562.         }
  2563.         }
  2564.         public static void Main1(string[] args)
  2565.         {
  2566.                 // Known problem -> these two pseudoprimes passes my implementation of
  2567.                 // primality test but failed in JDK's isProbablePrime test.
  2568.                 byte[] pseudoPrime1 = { (byte)0x00,
  2569.                         (byte)0x85, (byte)0x84, (byte)0x64, (byte)0xFD, (byte)0x70, (byte)0x6A,
  2570.                         (byte)0x9F, (byte)0xF0, (byte)0x94, (byte)0x0C, (byte)0x3E, (byte)0x2C,
  2571.                         (byte)0x74, (byte)0x34, (byte)0x05, (byte)0xC9, (byte)0x55, (byte)0xB3,
  2572.                         (byte)0x85, (byte)0x32, (byte)0x98, (byte)0x71, (byte)0xF9, (byte)0x41,
  2573.                         (byte)0x21, (byte)0x5F, (byte)0x02, (byte)0x9E, (byte)0xEA, (byte)0x56,
  2574.                         (byte)0x8D, (byte)0x8C, (byte)0x44, (byte)0xCC, (byte)0xEE, (byte)0xEE,
  2575.                         (byte)0x3D, (byte)0x2C, (byte)0x9D, (byte)0x2C, (byte)0x12, (byte)0x41,
  2576.                         (byte)0x1E, (byte)0xF1, (byte)0xC5, (byte)0x32, (byte)0xC3, (byte)0xAA,
  2577.                         (byte)0x31, (byte)0x4A, (byte)0x52, (byte)0xD8, (byte)0xE8, (byte)0xAF,
  2578.                         (byte)0x42, (byte)0xF4, (byte)0x72, (byte)0xA1, (byte)0x2A, (byte)0x0D,
  2579.                         (byte)0x97, (byte)0xB1, (byte)0x31, (byte)0xB3,
  2580.                 };
  2581.                 byte[] pseudoPrime2 = { (byte)0x00,
  2582.                         (byte)0x99, (byte)0x98, (byte)0xCA, (byte)0xB8, (byte)0x5E, (byte)0xD7,
  2583.                         (byte)0xE5, (byte)0xDC, (byte)0x28, (byte)0x5C, (byte)0x6F, (byte)0x0E,
  2584.                         (byte)0x15, (byte)0x09, (byte)0x59, (byte)0x6E, (byte)0x84, (byte)0xF3,
  2585.                         (byte)0x81, (byte)0xCD, (byte)0xDE, (byte)0x42, (byte)0xDC, (byte)0x93,
  2586.                         (byte)0xC2, (byte)0x7A, (byte)0x62, (byte)0xAC, (byte)0x6C, (byte)0xAF,
  2587.                         (byte)0xDE, (byte)0x74, (byte)0xE3, (byte)0xCB, (byte)0x60, (byte)0x20,
  2588.                         (byte)0x38, (byte)0x9C, (byte)0x21, (byte)0xC3, (byte)0xDC, (byte)0xC8,
  2589.                         (byte)0xA2, (byte)0x4D, (byte)0xC6, (byte)0x2A, (byte)0x35, (byte)0x7F,
  2590.                         (byte)0xF3, (byte)0xA9, (byte)0xE8, (byte)0x1D, (byte)0x7B, (byte)0x2C,
  2591.                         (byte)0x78, (byte)0xFA, (byte)0xB8, (byte)0x02, (byte)0x55, (byte)0x80,
  2592.                         (byte)0x9B, (byte)0xC2, (byte)0xA5, (byte)0xCB,
  2593.                 };
  2594.                 Console.WriteLine("List of primes < 2000n---------------------");
  2595.                 int limit = 100, count = 0;
  2596.                 for(int i = 0; i < 2000; i++)
  2597.                 {
  2598.                         if(i >= limit)
  2599.                         {
  2600.                                 Console.WriteLine();
  2601.                                 limit += 100;
  2602.                         }
  2603.                         BigInteger p = new BigInteger(-i);
  2604.                         if(p.isProbablePrime())
  2605.                         {
  2606.                                 Console.Write(i + ", ");
  2607.                                 count++;
  2608.                         }
  2609.                 }
  2610.                 Console.WriteLine("nCount = " + count);
  2611.                 BigInteger bi1 = new BigInteger(pseudoPrime1);
  2612.                 Console.WriteLine("nnPrimality testing forn" + bi1.ToString() + "n");
  2613.                 Console.WriteLine("SolovayStrassenTest(5) = " + bi1.SolovayStrassenTest(5));
  2614.                 Console.WriteLine("RabinMillerTest(5) = " + bi1.RabinMillerTest(5));
  2615.                 Console.WriteLine("FermatLittleTest(5) = " + bi1.FermatLittleTest(5));
  2616.                 Console.WriteLine("isProbablePrime() = " + bi1.isProbablePrime());
  2617.                 Console.Write("nGenerating 512-bits random pseudoprime. . .");
  2618.                 Random rand = new Random();
  2619.                 BigInteger prime = BigInteger.genPseudoPrime(512, 5, rand);
  2620.                 Console.WriteLine("n" + prime);
  2621.                 //int dwStart = System.Environment.TickCount;
  2622.                 //BigInteger.MulDivTest(100000);
  2623.                 //BigInteger.RSATest(10);
  2624.                 //BigInteger.RSATest2(10);
  2625.                 //Console.WriteLine(System.Environment.TickCount - dwStart);
  2626.         }
  2627. }