[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Mono.Security / Test / Mono.Security.Cryptography / ChangeLog
1 2007-05-08  Randolph Chung  <tausq@debian.org>
2
3         * CryptoConvertTest.cs: Add tests for DSA conversion functions.
4
5 2006-10-04  Sebastien Pouliot  <sebastien@ximian.com> 
6
7         * PKCS1Test.cs: Ensure the latest changes didn't break some SSL3 
8         features that uses MD5SHA1 as a hash function.
9         * RSAManagedTest.cs: Forgot to update test cases after right padding 
10         was added.
11
12 2006-09-05  Sebastien Pouliot  <sebastien@ximian.com>
13
14         * RSAManagedTest.cs: Add a test case for #79269 (wrong exception).
15
16 2005-04-27  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * KeyPairPersistenceTest.cs: Upgrade to NUnit 2.2 API to use Ignore.
19         Now Ignore all tests that results in UnauthorizedAccessException.
20
21 2004-12-06  Sebastien Pouliot  <sebastien@ximian.com>
22
23         * RSAManagedTest.cs: New. Unit tests to validate RSA decryption when 
24         using key blinding with or without using CRT.
25
26 2004-11-05  Sebastien Pouliot  <sebastien@ximian.com>
27
28         * KeyPairPersistenceTest.cs: Forgot to re-fix the second failing test.
29
30 2004-11-03  Sebastien Pouliot  <sebastien@ximian.com>
31
32         * KeyPairPersistenceTest.cs: Re-fix as the UnauthorizedAccessException
33         is the InnerException of a CryptographicException.
34
35 2004-10-28  Sebastien Pouliot  <sebastien@ximian.com>
36
37         * KeyPairPersistenceTest.cs: Fix two tests to work even if the user 
38         doesn't have access to the machine key store.
39
40 2004-09-22  Sebastien Pouliot  <sebastien@ximian.com>
41
42         * SHA224Test.cs: Fix compilation error with NUnit 2.1.91 (CVS).
43
44 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
45
46         * SHA224ManagedTest.cs: New. Unit tests for the managed implementation
47         of SHA-224.
48         * SHA224Test.cs: New. Unit tests for SHA-224. Use test vectors from
49         RFC3874.
50
51 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
52
53         * ARC4ManagedTest.cs: Added unit tests for exceptions coming from 
54         ICryptoTransform interface (TransformBlock, TransformFinalBlock).
55
56 2004-05-11  Sebastien Pouliot  <sebastien@ximian.com>
57
58         * ARC4ManagedTest.cs: Added missing  unit tests for complete coverage.
59         Completed convertion to NUnit 2.
60         * CryptoConvertTest.cs: Added/modified unit tests for better coverage.
61         * MD2ManagedTest.cs: Added unit tests for better coverage.
62         * MD2Test.cs: Added unit tests for better coverage.
63         * MD4ManagedTest.cs: Added unit tests for better coverage.
64         * MD4Test.cs: Added unit tests for better coverage.
65         * PKCS8.cs: Added unit tests for better coverage.
66
67 2004-05-01  Sebastien Pouliot  <sebastien@ximian.com>
68
69         * CryptoConvertTest.cs: Added test case where a strongname key pair
70         (RSA 1024 bits) was truncated in the last parameter (D) (i.e. the 
71         private key) but saved by the use of CRT (Chinese Remainder Theorem).
72
73 2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>
74
75         * CryptoConvertTest.cs: Added test case where the public key structure
76         is inside preceded by an header (like the one produced by "sn -e").
77
78 2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>
79
80         * CryptoConvertTest.cs: New. Unit tests for CryptoConvert.
81
82 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
83
84         * DiffieHellmanManagedTest.cs: New. Basic unit test for DH.
85
86 2004-02-07  Sebastien Pouliot  <sebastien@ximian.com>
87
88         * KeyPairPersistenceTest.cs: New. Unit tests for key pair persistence.
89
90 2003-11-27  Sebastien Pouliot  <spouliot@videotron.ca>
91
92         * MD4Test.cs: New. Contains all the test vectors provided in RFC1320 
93         - but none are executed because MD4 is an abstract class.
94         * MD4ManagedTest.cs: New. Run the unit tests from MD4Test.cs using 
95         the MD4Managed implementation of MD4.
96         * PKCS8Test.cs: New. Unit tests for PKCS8.
97
98 2003-03-07  Sebastien Pouliot  <spouliot@videotron.ca>
99
100         * ARC4ManagedTest.cs: New. Test vectors for RC4(tm) taken from
101         usenet and Netscape SSL version 3 implementation details.
102         * MD2ManagedTest.cs: New. Call tests defined in MD2Test class.
103         * MD2Test.cs: New. Test vectors defined in RFC1319.