Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Mono.Security.Cryptography « Test « Mono.Security « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc918d9ae4b879b21b5b022aed6f0ba3296d7b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
2007-05-08  Randolph Chung  <tausq@debian.org>

	* CryptoConvertTest.cs: Add tests for DSA conversion functions.

2006-10-04  Sebastien Pouliot  <sebastien@ximian.com> 

	* PKCS1Test.cs: Ensure the latest changes didn't break some SSL3 
	features that uses MD5SHA1 as a hash function.
	* RSAManagedTest.cs: Forgot to update test cases after right padding 
	was added.

2006-09-05  Sebastien Pouliot  <sebastien@ximian.com>

	* RSAManagedTest.cs: Add a test case for #79269 (wrong exception).

2005-04-27  Sebastien Pouliot  <sebastien@ximian.com>

	* KeyPairPersistenceTest.cs: Upgrade to NUnit 2.2 API to use Ignore.
	Now Ignore all tests that results in UnauthorizedAccessException.

2004-12-06  Sebastien Pouliot  <sebastien@ximian.com>

	* RSAManagedTest.cs: New. Unit tests to validate RSA decryption when 
	using key blinding with or without using CRT.

2004-11-05  Sebastien Pouliot  <sebastien@ximian.com>

	* KeyPairPersistenceTest.cs: Forgot to re-fix the second failing test.

2004-11-03  Sebastien Pouliot  <sebastien@ximian.com>

	* KeyPairPersistenceTest.cs: Re-fix as the UnauthorizedAccessException
	is the InnerException of a CryptographicException.

2004-10-28  Sebastien Pouliot  <sebastien@ximian.com>

	* KeyPairPersistenceTest.cs: Fix two tests to work even if the user 
	doesn't have access to the machine key store.

2004-09-22  Sebastien Pouliot  <sebastien@ximian.com>

	* SHA224Test.cs: Fix compilation error with NUnit 2.1.91 (CVS).

2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>

	* SHA224ManagedTest.cs: New. Unit tests for the managed implementation
	of SHA-224.
	* SHA224Test.cs: New. Unit tests for SHA-224. Use test vectors from
	RFC3874.

2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>

	* ARC4ManagedTest.cs: Added unit tests for exceptions coming from 
	ICryptoTransform interface (TransformBlock, TransformFinalBlock).

2004-05-11  Sebastien Pouliot  <sebastien@ximian.com>

	* ARC4ManagedTest.cs: Added missing  unit tests for complete coverage.
	Completed convertion to NUnit 2.
	* CryptoConvertTest.cs: Added/modified unit tests for better coverage.
	* MD2ManagedTest.cs: Added unit tests for better coverage.
	* MD2Test.cs: Added unit tests for better coverage.
	* MD4ManagedTest.cs: Added unit tests for better coverage.
	* MD4Test.cs: Added unit tests for better coverage.
	* PKCS8.cs: Added unit tests for better coverage.

2004-05-01  Sebastien Pouliot  <sebastien@ximian.com>

	* CryptoConvertTest.cs: Added test case where a strongname key pair
	(RSA 1024 bits) was truncated in the last parameter (D) (i.e. the 
	private key) but saved by the use of CRT (Chinese Remainder Theorem).

2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>

	* CryptoConvertTest.cs: Added test case where the public key structure
	is inside preceded by an header (like the one produced by "sn -e").

2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>

	* CryptoConvertTest.cs: New. Unit tests for CryptoConvert.

2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>

	* DiffieHellmanManagedTest.cs: New. Basic unit test for DH.

2004-02-07  Sebastien Pouliot  <sebastien@ximian.com>

	* KeyPairPersistenceTest.cs: New. Unit tests for key pair persistence.

2003-11-27  Sebastien Pouliot  <spouliot@videotron.ca>

	* MD4Test.cs: New. Contains all the test vectors provided in RFC1320 
	- but none are executed because MD4 is an abstract class.
	* MD4ManagedTest.cs: New. Run the unit tests from MD4Test.cs using 
	the MD4Managed implementation of MD4.
	* PKCS8Test.cs: New. Unit tests for PKCS8.

2003-03-07  Sebastien Pouliot  <spouliot@videotron.ca>

	* ARC4ManagedTest.cs: New. Test vectors for RC4(tm) taken from
	usenet and Netscape SSL version 3 implementation details.
	* MD2ManagedTest.cs: New. Call tests defined in MD2Test class.
	* MD2Test.cs: New. Test vectors defined in RFC1319.