fixed tests
[mono.git] / mcs / class / Mono.Security / Mono.Security.Cryptography / ChangeLog
1 2007-01-08  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * SymmetricTransform.cs: Fix #80439 again. This time we have tests for
4         all ciphers, modes and padding.
5
6 2007-01-04  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * SymmetricTransform.cs: Fix previous fix (for #80439) as we were now
9         too permissive.
10
11 2007-01-03  Sebastien Pouliot  <sebastien@ximian.com>
12
13         * SymmetricTransform.cs: Reduce inputCount if larger than the output
14         data can hold. Fix bug #80439.
15
16 2006-12-11  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * PKCS8.cs: Normalize the private key X integer, not it's ASN.1
19         container, to 20 bytes.
20
21 2006-10-04  Sebastien Pouliot  <sebastien@ximian.com>
22
23         * PKCS1.cs: Remove compatibility block where all padding wasn't 
24         verified (can't find the original test case for it). Note: the 
25         existing implementation wasn't affected by CVE-2006-4339, aka RSA 
26         PKCS#1 1.5 signature forgery (but we're stronger without it).
27
28 2006-09-27  Sebastien Pouliot  <sebastien@ximian.com>
29
30         * RSAManaged.cs: Ensure that the results of Encrypt and Decrypt will
31         always be the same length as the key. If smaller then we left pad the
32         result with 0x00 (same integer, correct length for everyone). Fix bug
33         #79502 where an LDAP/SSL server didn't like the missing byte.
34
35 2006-09-05  Sebastien Pouliot  <sebastien@ximian.com>
36
37         * RSAManaged.cs: Backport NRE fix from mscorlib.dll.
38
39 2006-06-15  Sebastien Pouliot  <sebastien@ximian.com>
40
41         * CryptoTools.cs: Fix offset in block processor. This fix the HMAC
42         algorithms when large buffer where used (with multiple calls to
43         TransformBlock).
44
45 2006-02-28  Sebastien Pouliot  <sebastien@ximian.com>
46
47         * CryptoConvert.cs: Make sure we can import a keypair into our RSA 
48         instance (even if the key store isn't available). See bug #77559.
49         * PKCS8.cs: Make sure we can import a keypair into our RSA instance
50         (even if the key store isn't available). See bug #77559.
51
52 2005-11-23  Sebastien Pouliot  <sebastien@ximian.com>
53
54         * SymmetricTransform.cs: Synched with corlib version (IV behaviour for
55         NET_2_0). Virtualized some methods (like Dispose). Fix bug #76801.
56
57 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
58
59         * KeyPairPersistence.cs: Use PlatformID.Unix under NET_2_0. 
60         * PKCS8.cs: In sync with corlib;
61
62 2005-04-18  Sebastien Pouliot  <sebastien@ximian.com> 
63  
64         * Null.cs: New "null" symmetric encryption for debugging. This class 
65         isn't (and shouldn't be) built by default.
66         * SymmetricTransform.cs: Fixed a division by zero if someone changes 
67         the feedback value to 0.
68         * SHA224Managed.cs: Fixed warning about unused private constant.
69
70 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
71
72         * SymmetricTransform.cs: Fixed a padding bug affecting that can occurs
73         when no padding is used.
74
75 2005-03-07  Sebastien Pouliot  <sebastien@ximian.com>
76
77         * MD2Managed.cs: Removed memory allocation from the transform method.
78         * MD4Managed.cs: Moved memoty allocation to constructor (from init).
79         * SHA224Managed.cs: Fixed bug #73404 which gaves bad results when the
80         digested data is longer than 2^32 bits.
81
82 2005-01-11  Sebastien Pouliot  <sebastien@ximian.com>
83
84         * SymmetricTransform.cs: Added support for ANSI X9.23 padding and
85         ISO 10126 padding modes (applies to all symmetric block ciphers).
86
87 2004-12-22  Sebastien Pouliot  <sebastien@ximian.com>
88
89         * KeyPairPersistence.cs: Commented imperative asserts until it is 
90         supported by the runtime.
91
92 2004-12-06  Sebastien Pouliot  <sebastien@ximian.com>
93
94         * RSAManaged.cs: Implement key blinding for RSA decryption with, or
95         without, using CRT.
96
97 2004-11-23  Sebastien Pouliot  <sebastien@ximian.com>
98
99         * PKCS1.cs: Fix PKCS#1 v1.5 decryption when the ciphertext isn't 
100         exactly the same of the public key (which happens sometimes on Fx 1.1
101         probably because it doesn't do the last I2OSP operation to left pad
102         the resulting big integer with zeros).
103
104 2004-11-10  Sebastien Pouliot  <sebastien@ximian.com>
105
106         * RC4.cs: Fixed RC4 for compatibility with .NET 2.0. The algorithm is 
107         OK but the check for IV, unused for stream ciphers, has changed.
108
109 2004-10-28  Sebastien Pouliot  <sebastien@ximian.com>
110
111         * KeyPairPersistence.cs: Added localization for exceptions messages.
112         Also added more details (type and path) when an exception is thrown.
113
114 2004-09-29  Sebastien Pouliot  <sebastien@ximian.com>
115
116         * RSAManaged.cs: In synch with corlib. KeySize is now always a 
117         multiple of 8 bits. Fix #66929.
118
119 2004-09-17  Sebastien Pouliot  <sebastien@ximian.com>
120
121         * CryptoConvert.cs: In synch with corlib version. Fixed all level 4 
122         compilation warnings.
123         * KeyPairPersistence.cs: In synch with corlib version. Fixed all level
124         4 compilation warnings.
125         * PKCS1.cs: In synch with corlib version. Fixed all level 4 
126         compilation warnings.
127         * SHA224Managed.cs: Fixed all level 4 compilation warnings.
128
129 2004-09-17  Sebastien Pouliot  <sebastien@ximian.com>
130
131         * SHA224.cs: New. Abstract class for all SHA224 implementations.
132         * SHA224Managed.cs: New. Managed implementation of SHA224 (a SHA256
133         derivate) as specified in RFC3874 and FIPS 180-2 Change Notice.
134
135 2004-06-23  Sebastien Pouliot  <sebastien@ximian.com>
136
137         * SymmetricTransform.cs: Reduce by one the number of block when 
138         decrypting. This operation was in CryptoStream before but is only
139         required for decryption (which CryptoStream can't know). 
140         Fix bug #60573.
141
142 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
143
144         * ARC4Managed.cs: Added missing exception handling in TransformBlock 
145         and TransformFinalBlock.
146         * SymmetricTransform.cs: Fixed possible integer overflow. Added 
147         missing exception handling in TransformBlock and TransformFinalBlock.
148
149 2004-05-10  Sebastien Pouliot  <sebastien@ximian.com>
150
151         * PKCS8.cs: Fixed negative Version check.
152         * MD2Managed.cs: Added readonly to static array constants.
153         * MD4Managed.cs: Removed unrequired memory allocation in MD4Transform.
154
155 2004-05-01  Sebastien Pouliot  <sebastien@ximian.com>
156
157         * CryptoConvert.cs: Added support for truncated, but still valid, RSA
158         private key blob. Fix #57941 (couldn't sign with nunit key).
159         * RSAManaged.cs: Normalized the size of D when not present. This 
160         allows us to output a compatible base64 representation of 1024bits 0.
161
162 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
163
164         * SymmetricTransform.cs: Fixed bug when offset > 0 in destination 
165         buffer.
166
167 2004-04-22  Sebastien Pouliot  <sebastien@ximian.com>
168
169         * CryptoConvert.cs: FxCop-ized. Sealed class. Use Buffer.BlockCopy.
170         * CryptoTools.cs: FxCop-ized. Sealed KeyBuilder class. Delay creation
171         of RNG object. Use Buffer.BlockCopy.
172         * DiffieHellman.cs: FxCop-ized. Removed public constructor.
173         * DiffieHellmanManaged.cs: FxCop-ized. Actualized with changes from
174         BigInteger.
175         * KeyPairPersistance.cs: FxCop-ized. Updated version for management
176         of keypairs.
177         * MD2Managed.cs: Use Buffer.BlockCopy instead of Array.Copy.
178         * PKCS1.cs: FxCop-ized. Sealed class. Use Buffer.BlockCopy instead of
179         Array.Copy. Also includes endian patches from Bernie Solomon.
180         * PKCS8.cs: FxCop-ized. Sealed class. 
181         * RSAManaged.cs: FxCop-ized. Actualized with changes from BigInteger.
182         * SymmetricTransform.cs: Use Buffer.BlockCopy instead of Array.Copy.
183
184 2004-04-20  Sebastien Pouliot  <sebastien@ximian.com>
185
186         * CryptoConvert.cs: Synched with corlib version to get endian fixes 
187         from Bernie Solomon.
188
189 2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>
190
191         * CryptoConvert.cs: Added exception for null and bad parameters.
192         * RSAManaged.cs: CryptographicException thrown when trying to export
193         the private key when only the public key is present (CRT aware).
194
195 2004-03-22  Sebastien Pouliot  <sebastien@ximian.com>
196
197         * CryptoConvert.cs: Added new methods to convert [From|To]Hex. Added
198         new version of FromCapiPublicKeyBlob with an integer offset.
199
200 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
201
202         * PKCS8.cs: Added EncodeRSA, EncodeDSA and completed GetBytes() so it
203         is now possible to encode PKCS8 files (this is required to encode 
204         PKCS12 files).
205
206 2004-02-15  Sebastien Pouliot  <sebastien@ximian.com>
207
208         * ARC4Managed.cs: Removed all % 256 (modulo) because typecasting to 
209         byte already ensure the result would be correct (as suggested by 
210         Technoboy). Now use KeyBuilder to create new keys.
211
212 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
213
214         * DHKeyGeneration.cs: New. Enumuration of possible key generation for
215         Diffie-Hellman. Contributed by Pieter Philippaerts (mentalis.org).
216         * DHParameters.cs: New. Structure to hold the different elements of a
217         Diffie-Hellman key. Contributed by Pieter Philippaerts (mentalis.org).
218         * DiffieHellman.cs: New. Astract class as base for all Diffie-Hellman
219         implementations. Contributed by Pieter Philippaerts (mentalis.org).
220         * DiffieHellmanManaged.cs: New. Managed implementation of the Diffie-
221         Hellman key agreement algorithm. Contributed by Pieter Philippaerts.
222
223 2004-02-09  Sebastien Pouliot  <sebastien@ximian.com>
224
225         * PKCS1.cs: New. Copied from corlib. Required for RSAManaged.
226         * RSAManaged.cs: New. Copied from corlib. Required for TLS - some
227         parts (MD5SHA1) cannot work with the default RSACryptoServiceProvider.
228
229 2004-02-06  Sebastien Pouliot  <sebastien@ximian.com>
230
231         * CryptoTools.cs: New. Copied from corlib to offer the sames services
232         to symmetric algorithms in Mono.Security assembly.
233         * KeyPairPersistance.cs: Provides a similar to CryptoAPI persistence 
234         mechanism for keypairs (based on CspParameters).
235         * SymmetricTransform.cs: New. Copied from corlib to offer the sames 
236         services to symmetric algorithms in Mono.Security assembly.
237
238 2004-01-12  Sebastien Pouliot  <spouliot@videotron.ca>
239
240         * CryptoConvert.cs: RSA doesn't start with a Q - at least that what
241         a strongname told me. Sorry Ron :(
242
243 2003-11-27  Sebastien Pouliot  <spouliot@videotron.ca>
244
245         * MD4.cs: New. Asbtract class for all MD4 implementations. WARNING:
246         The MD4 algorithm is BROKEN (collisions) and SHOULDN'T be used in 
247         NEW designs. However some higher level algorithms (like NTLM) requires 
248         MD4 (and may even be secure using it). YOU'RE WARNED!
249         * MD4Managed.cs: New. Managed implementation of MD4 (RFC1320).
250         * PKCS8.cs: New. Added Private-Key Information Syntax Standard as a 
251         building block for PKCS12.
252
253 2003-10-30  Sebastien Pouliot  <spouliot@videotron.ca>
254
255         * CryptoConvert.cs: Fixed strongname generation for small exponents 
256         (like 17). Part of the fixed for bug #50341.
257
258 2003-06-19  Nick Drochak <ndrochak@gol.com>
259
260         * CryptoConvert.cs: Work around for mcs? bug 45127.
261
262 2003-03-07  Sebastien Pouliot  <spouliot@videotron.ca>
263
264         * ARC4Managed.cs: New. Implementation of the Alleged RC4(tm)
265         stream cipher in managed code (required for SSL/TLS).
266         * CryptoConvert.cs: New. Helper class to help convert between
267         Windows crypto structures and .NET crypto classes (required
268         for security tools).
269         * MD2.cs: New. Abstract class for all MD2 hash implementations.
270         * MD2Managed.cs: New. Managed implementation of the MD2 hash
271         algorithm (required for old, but still valid, X.509 certificates).
272         * RC4.cs: New. Abstract class for all RC4 stream cipher 
273         implementations.