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