c2241f882c534079f6ab1172930716dfd432e495
[mono.git] / mcs / class / Mono.Security / Mono.Math / ChangeLog
1 2005-05-07  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * BigInteger.cs: Faster scan of smallPrimes in IsProbablePrime. 
4         Commented the methods OddModTwoPow and EvenModTwoPow as they are broken
5         in some cases (well tested primes test case). 
6         
7 2004-04-22  Sebastien Pouliot  <sebastien@ximian.com>
8
9         * BigInteger.cs: FxCop-ized. CLS compliance.
10
11 2004-02-23  Sebastien Pouliot  <sebastien@ximian.com>
12
13         * BigInteger.cs: Corrected isProbablePrime by removing the redundant 
14         loop. Fix #54750.
15
16 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * BigInteger.cs: Fixed isProbablePrime() and added Parse method from
19         patch provided by Pieter (#51229). Changed SmallPrimeSppTest to 
20         RabinMillerTest (#51229, #54262). Removed obsoleted method
21         isProbablePrime(int).
22
23 2004-02-09  Sebastien Pouliot  <sebastien@ximian.com>
24
25         * BigInteger.cs: New. Copied from corlib. Required for PKCS1 and
26         RSAManaged (which are required for TLS).