fixed tests
[mono.git] / mcs / class / corlib / System.Security.Cryptography / ChangeLog
1 2007-02-14  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * HMAC.cs: Handle BlockSizeValue correctly.
4         * HMACSHA384.cs: Add support for forthcoming ProduceLegacyHmacValues
5         property (in the next service pack).
6         * HMACSHA512.cs: Add support for forthcoming ProduceLegacyHmacValues
7         property (in the next service pack).
8
9 2007-01-22  Atsushi Enomoto  <atsushi@ximian.com>
10
11         * CryptoConfig.cs: Fixed incorrect exchange in urlExcC14N and
12           urlExcC14NWithComments.
13
14 2006-11-24  Sebastien Pouliot  <sebastien@ximian.com>
15
16         * CryptoConfig.cs: Add support for (2.0) custom X.509 chains.
17
18 2006-11-08  Sebastien Pouliot  <sebastien@ximian.com>
19
20         * CryptoConfig.cs: Add support for (2.0) X.509 extensions in 
21         CreateFromName method. This allows the framework to be extensible with
22         new certificate extensions (syntax is missing from machine.config).
23
24 2006-10-12  Sebastien Pouliot  <sebastien@ximian.com>
25
26         * CryptoConfig.cs: Use SmallXmlParser with a custom handler to reduce
27         memory requirements to process machine.config. Fix #79653 (beagle).
28
29 2006-10-11  Sebastien Pouliot  <sebastien@ximian.com>
30
31         * CryptoConfig.cs: Accept lower/mixed-case algorithm names in 
32         CreateFromName and MapNameToOID methods (fix bug #79641). Removed OID
33         mappings in 2.0 for DSA and 3DES (they were part of the betas but not
34         in the final 2.0 release of the framework).
35
36 2006-09-20  Kazuki Oikawa  <kazuki@panicode.com>
37
38         * RijndaelManaged.cs: improves the performance.
39
40 2006-09-08  Sebastien Pouliot  <sebastien@ximian.com>
41
42         * RSAOAEPKeyExchangeDeformatter.cs: Throw a CryptographicException, 
43         instead of returning null, when a padding error occurs on decryption.
44         * RSAPKCS1KeyExchangeDeformatter.cs: Throw a CryptographicException, 
45         instead of returning null, when a padding error occurs on decryption.
46
47 2006-07-01  Sebastien Pouliot  <sebastien@ximian.com>
48
49         * AsymmetricSignatureDeformatter.cs: Set the hash algorithm name from
50         the hash instance. Fix for bug #78744 by Diego Mesa Tabares.
51
52 2006-06-15  Sebastien Pouliot  <sebastien@ximian.com>
53
54         * HashAlgorithm.cs: Changed the order of BlockCopy + HashCore to
55         HashCore + BlockCopy. Fx 2.0 now allows using a null output buffer
56         (without exception) while previous 1.x versions crashed the runtime
57         (mono won't crash the runtime, so we always do like 2.0).
58
59 2006-05-30  Sebastien Pouliot  <sebastien@ximian.com>
60
61         * AsymmetricKeyExchangeDeformatter.cs: Under 2.0 the ctor is 
62         protected.
63         * AsymmetricKeyExchangeFormatter.cs: Under 2.0 the ctor is protected.
64         * AsymmetricSignatureDeformatter.cs: Under 2.0 the ctor is protected.
65         * AsymmetricSignatureFormatter.cs: Under 2.0 the ctor is protected.
66         * DES.cs: Under 2.0 the ctor is protected.
67         * HashAlgorithm.cs: Under 2.0 the HashValue field is protected 
68         internal.
69         * RandomNumberGenerator.cs: Under 2.0 the ctor is protected.
70         * RC2.cs: Under 2.0 the ctor is protected.
71         * Rijndael.cs: Under 2.0 the ctor is protected.
72         * RSA.cs: Under 2.0 the ctor is protected.
73         * SHA256.cs: Under 2.0 the ctor is protected.
74         * SHA384.cs: Under 2.0 the ctor is protected.
75         * SHA512.cs: Under 2.0 the ctor is protected.
76         * SymmetricAlgorithm.cs: Under 2.0 the ctor is protected.
77         * TripleDES.cs: Under 2.0 the ctor is protected.
78
79 2006-02-03  Zoltan Varga  <vargaz@gmail.com>
80
81         * CryptoStream.cs: Add 'override' keyword to Dispose (bool) method in 2.0.
82
83 2005-12-15  Sebastien Pouliot  <sebastien@ximian.com>
84
85         * SymmetricAlgorithm.cs: Changing (not setting) BlockSize must 
86         re-generate a new IV (so the properties are kept valid). Note that
87         changing or setting (same value) the KeySize always re-generate a key.
88
89 2005-12-01  Sebastien Pouliot  <sebastien@ximian.com>
90
91         * RIPEMD160Managed.cs: Endianess fix.
92
93 2005-11-22  Sebastien Pouliot  <sebastien@ximian.com>
94
95         * DSAManaged.cs: Don't output J in the XML if it's not exported (i.e.
96         if it wasn't imported too but instead calculated from the other 
97         parameters ;-).
98
99 2005-11-09  Sebastien Pouliot  <sebastien@ximian.com>
100
101         * KeyNumber.cs: Added missing [Serializable] present in 2.0.
102
103 2005-10-21  Sebastien Pouliot  <sebastien@ximian.com>
104
105         * DESCryptoServiceProvider.cs: Don't change the instance key/iv when
106         creating an encryptor or decryptor specifying them. Generate a new key
107         if null is specified (not really useful but compatible with MS 
108         behaviour). Check for weak/semi-weak key when creating transforms.
109         * RC2CryptoServiceProvider.cs: Don't change the instance key/iv when 
110         creating an encryptor or decryptor specifying them. Check legal key
111         sizes when creating transforms.
112         * RijndaelManaged.cs: Don't change the instance key/iv when creating 
113         an encryptor or decryptor specifying them. Check legal key sizes when
114         creating transforms.
115         * TripleDESCryptoServiceProvider.cs: Don't change the instance key/iv
116         when creating an encryptor or decryptor specifying them. Generate a 
117         new key if null is specified (not really useful but compatible with MS
118         behaviour). Check for weak key when creating transforms.
119
120 2005-09-29  Sebastien Pouliot  <sebastien@ximian.com>
121
122         * HMACSHA1.cs: Added the new 2.0 ctor that let the programmer choose
123         between the managed and unmanaged SHA1 algorithm used in the HMAC 
124         (that doesn't change much thing in the default config for Mono).
125         * PasswordDeriveBytes.cs: Added [Obsolete] on GetBytes (2.0) as new
126         applications should be using Rfc2898DeriveBytes to get PKCS#5 v2
127         support.
128
129 2005-08-17  Sebastien Pouliot  <sebastien@ximian.com>
130
131         * FromBase64Transform.cs: Check that the TransformFinal can be called
132         with only whitespace (with FromBase64TransformMode.IgnoreWhiteSpaces)
133         so that we must return new byte [0].
134
135 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
136
137         * FromBase64Transform.cs: Removed memory allocations during the 
138         transform. It's now just the accumulator (ctor) and the 
139         TransformFinalBlock that allocates memory. The transform is now
140         between 3 to 4 times faster than before.
141
142 2005-06-10  Sebastien Pouliot  <sebastien@ximian.com>
143
144         * all: 2.0 beta2 fixes, i.e. mostly added [ComVisible(true)]
145
146 2005-06-09  Sebastien Pouliot  <sebastien@ximian.com>
147
148         * HMAC.cs: BlockSizeValue has changed from a protected member to
149         a protected property.
150
151 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
152
153         * CspProviderFlags.cs: UseExistingKey was added in 1.1 SP1. Added
154         ComVisible attribute for 2.0.
155
156 2005-05-19  Sebastien Pouliot  <sebastien@ximian.com>
157
158         * CryptoConfig.cs: Don't use the global hashtables until the 
159         initialization is complete.
160
161 2005-05-18  Sebastien Pouliot  <sebastien@ximian.com>
162
163         * CryptoConfig.cs: Changed lock pattern to second version of
164         http://www.skeet.org.uk/csharp/singleton.html
165
166 2005-05-16  Sebastien Pouliot  <sebastien@ximian.com>
167
168         * CryptoConfig.cs: Initialization wasn't threadsafe as the "checked" 
169         value was assigned at the start of the initialization.
170
171 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
172
173         * CryptoConfig.cs: Removed RSA OID and added null check in EncodeOID
174         in NET_2_0 to match beta2.
175         * DES.cs: Added null check for IsWeakKey and IsSemiWeakKey in NET_2_0
176         to match beta2.
177         * SymmetricAlgorithm.cs: Throw CryptographicException when feedback is
178         zero in NET_2_0 to match beta2
179         * TripleDES.cs: Added null check for IsWeakKey in NET_2_0 to match 
180         beta2.
181
182 2005-04-05  Sebastien Pouliot  <sebastien@ximian.com>
183
184         * CryptoConfig.cs: Added Assert for FileIOPermission to LoadConfig so 
185         the configuration can be read under partial trust.
186
187 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
188
189         * CryptoConfig.cs: Added LinkDemand for unrestricted to CreateFromName
190         when used to create instance with object[] parameters.
191         * CryptoAPITransform.cs: Added Demand for UnmanagedCode to KeyHandle 
192         property.
193
194 2005-03-07  Sebastien Pouliot  <sebastien@ximian.com>
195
196         * MD5CryptoServiceProvider.cs: Fixed #73404 to return right results
197         if the data length is bigger than 2^32 bits.
198         * SHA1CryptoServiceProvider.cs: Fixed #73404 to return right results
199         if the data length is bigger than 2^32 bits.
200         * SHA256Managed.cs: Fixed #73404 to return right results if the data
201         length is bigger than 2^32 bits.
202
203 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
204
205         * RNGCryptoServiceProvider.cs: Added a new call in the static ctor
206         to check if we're using a global handle. In that case we lock before
207         calling the RNG.
208
209 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com> 
210
211         * DSA.cs: Weekly fix to case where DSAParameters.Counter is 0 :-(
212         A new unit test was added for this specific case so it's hopefully
213         the last fix for this. Fixed exception reporting to match NET_2_0.
214
215 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com> 
216
217         * DSA.cs: Really fixed case where DSAParameters.Counter is 0.
218
219 2005-01-21  Sebastien Pouliot  <sebastien@ximian.com> 
220
221         * DSA.cs: Handle the case where DSAParameters.Counter is 0.
222
223 2005-01-11  Sebastien Pouliot  <sebastien@ximian.com> 
224
225         * CryptoConfig.cs: Added support to create RIPEMD160 and the new HMAC
226         algorithms (HMACMD5, HMACRIPEMD160, HMACSHA256, HMACSHA384 and 
227         HMACSHA512). This fix the unit tests failures in Mono.Security.dll in
228         the NET_2_0 profile.
229         * DSACryptoServiceProvider.cs: Import|ExportCspBlob throws 
230         NotImplementedException (CryptoConvert class doesn't support DSA yet).
231         * RSACryptoServiceProvider.cs: SignHash/VerifyHash defaults to SHA-1
232         in 2.0. VerifyHash throw appropriate exception when no OID is 
233         specified (1.0/1.1). Import|ExportCspBlob implemented using the
234         CryptoConvert class.
235         * RSAOAEPKeyExchangeDeformatter.cs: Throw exception if no key is 
236         specified.
237         * RSAOAEPKeyExchangeFormatter.cs: Throw exception if no key is 
238         specified.
239         * RSAPKCS1KeyExchangeFormatter.cs: Throw exception if no key is 
240         specified.
241         * SymmetricAlgorithm.cs: More strict IV length checks on 2.0.
242
243 2005-01-10  Sebastien Pouliot  <sebastien@ximian.com>
244
245         * CryptoConfig.cs: Change the OID for SHA-2 algorithms to match 2.0
246         and added new OID for asymmetric and symmetric algorithms.
247         * CspKeyContainerInfo.cs: Added CryptoKeySecurity property. This will
248         always return null until we support access control for key containers.
249         * CspParameters.cs: Added new constructors and propertys for access 
250         control and password (2.0).
251         * DSASignatureDeformatter.cs: Throw ArgumentNullException in NET_2_0 
252         if a null key is specified.
253         * DSASignatureFormatter.cs: Throw ArgumentNullException in NET_2_0 if
254         a null key is specified.
255         * HashAlgorithm.cs: Fix the reported exceptions for output buffers.
256         * HMAC.cs: Change the .Clear (which calls Dispose) to a .Initialize.
257         * MACTripleDES.cs: Removed unrequired private field _padding.
258         * PasswordDeriveBytes.cs: Added 4 new constructors where the password
259         is a byte[] (as it seems MS won't be using SecureString for this).
260         * RIPEMD160Managed.cs: Removed overriden Dispose method to match 2.0.
261         Clear buffers when initializing (e.g. re-using the hash instance).
262         * Rfc2898DeriveBytes.cs: Added a new constructor where the password
263         is a byte[] (as it seems MS won't be using SecureString for this).
264         * RSAPKCS1SignatureDeformatter.cs: Throw ArgumentNullException in
265         NET_2_0 if a null key is specified.
266         * RSAPKCS1SignatureFormatter.cs: Throw ArgumentNullException in
267         NET_2_0 if a null key is specified.
268         * ToBase64Transform.cs: Fix the reported exceptions for output buffers.
269
270 2005-01-06  Sebastien Pouliot  <sebastien@ximian.com> 
271
272         * DES.cs: Change wek and semi-weak key checking to avoid memory 
273         allocations. Old version required 2 allocations (weak+semiweak) to 
274         unpack the key. New versions are 16x-20x faster.
275         *  RijndaelManaged.cs: Removed unrequired "& 0xff" when casting to 
276         byte.
277
278 2005-01-03  Sebastien Pouliot  <sebastien@ximian.com> 
279
280         * DESCryptoServiceProvider.cs: Refactored ECB/ProcessBlock to allow
281         TripleDES to be more efficient by using the permutations itself. 
282         * TripleDESCryptoServiceProvider.cs: Removed memory allocation in 
283         Transform's ECB method. Changed code to directly call DES's 
284         permutations. MACTripleDES is now 20% faster (didn't have any other
285         3DES benchmark on hand) and requires much less memory.
286
287 2005-01-03  Sebastien Pouliot  <sebastien@ximian.com>
288
289         * DESCryptoServiceProvider.cs: Now using pre-computed tables (instead
290         of using a static constructor to compute them). Not much change 
291         performance-wise unless you used DES but only "a little" ;-). The old
292         code (who computed the results) is still present but commented,
293
294 2005-01-02  Sebastien Pouliot  <sebastien@ximian.com>
295
296         * SHA1CryptoServiceProvider.cs: Removed memory allocation in 
297         ProcessBlock method (now global). This gives up to 8% performance
298         increase when multiple blocks are being used.
299         * SHA256Managed.cs: Removed memory allocation in ProcessBlock method
300         (now global). This gives up to 5% performance increase when multiple 
301         blocks are being used.
302
303 2004-12-23  Sebastien Pouliot  <sebastien@ximian.com>
304
305         * DataProtectionScope.cs: Moved in System.Security.dll
306         * MemoryProtectionScope.cs: Moved in System.Security.dll
307         * ProtectedData.cs: Moved in System.Security.dll
308         * ProtectedMemory.cs: Moved in System.Security.dll
309
310 2004-12-22  Sebastien Pouliot  <sebastien@ximian.com>
311
312         * RSA.cs: Throw the proper CryptographicException exception when 
313         exporting a private key without CRT parameters, while keeping the
314         ArgumentNullException when the private exponent (D) is missing.
315
316 2004-12-06  Sebastien Pouliot  <sebastien@ximian.com>
317
318         * RSACryptoServiceProvider.cs: Adjust DecryptValue to the fact that 
319         Mono's RSAManaged support decryption without CRT while MS requires it.
320
321 2004-11-26  Sebastien Pouliot  <sebastien@ximian.com>
322
323         * CryptoAPITransform.cs: 
324         * DSACryptoServiceProvider.cs: 
325         * MACTripleDES.cs:
326         * RC2CryptoServiceProvider.cs: 
327         * RSACryptoServiceProvider.cs: 
328                 Added ComVisible attributes to match 2.0 October Preview.
329
330 2004-11-03  Sebastien Pouliot  <sebastien@ximian.com>
331
332         * PasswordDeriveBytes.cs: Fix default iretation count to 100. Fix
333         exceptions to match MS more closely. Fixed possible ArgumentException
334         when asking multiple GetBytes than results in more bits than the hash
335         function can provide.
336
337 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
338
339         * DESCryptoServiceProvider.cs: Fixed warning (l4) by adding empty {}.
340         * DSASignatureDeformatter.cs: Fixed warning (l4) for unused variable.
341         * DSASignatureFormatter.cs: Fixed warning (l4) for unused variable.
342         * HMACSHA1.cs: Fixed warning (l4) for unused variable.
343
344 2004-09-03  Tim Coleman (tim@timcoleman.com)
345
346         * CryptoConfig.cs: Add new Xml cryptography class info.
347
348 2004-08-08  Sebastien Pouliot  <sebastien@ximian.com>
349
350         * CspProviderFlags.cs: Fixed new enums values.
351         * DSA.cs: Fixed #if for constructor visibility.
352         * CryptoAPITransform.cs: Removed constructor for NET_2_0 profile.
353
354 2004-07-07  Sebastien Pouliot  <sebastien@ximian.com>
355
356         * DES.cs: Fixed FeedbackSizeValue to 8.
357         * RC2.cs: Fixed FeedbackSizeValue to 8.
358         * RC2CryptoServiceProvider.cs: When key size is different from 
359         effective key size we throw CryptographicUnexpectedOperationException.
360         * TripleDES.cs: Fixed FeedbackSizeValue to 8.
361
362 2004-07-07  Sebastien Pouliot  <sebastien@ximian.com>
363
364         * CryptoAPITransform.cs: Added the new Reset method for NET_2_0. This
365         is a NOP as this class isn't used by Mono (all crypto transforms are 
366         managed).
367         * CryptographicException.cs: Added _Exception interface for NET_2_0 
368         profile.
369         * CspProviderFlags.cs: Added new enum's members for NET_2_0.
370         * DSA.cs: Changed constructor to protected for NET_2_0. It is now 
371         possible to inherit from DSA in other assemblies.
372         * DSACryptoServiceProvider.cs: NET_2_0 cleanup. Added interface 
373         ICspAsymmetricAlgorithm (stub), removed (unrequired) LegalKeySizes 
374         override, fixed visibility of PublicOnly property.
375         * HMACSHA1.cs: Fixed #if for NET_2_0 profile.
376         * KeyNumber.cs: Fixed values for new enum in Fx 2.0.
377         * MACTripleDES.cs: Added new Padding property to NET_2_0 profile.
378         * ProtectedData.cs: Added missing private constructor.
379         * ProtectedMemory.cs: Added missing private constructor.
380         * RC2CryptoServiceProvider.cs: Added UseSalt property to NET_2_0 
381         profile. Salt usage must be added to the transforms.
382         * RIPEMD160Managed.cs: Removed unrequired [CLSCompliant] attributes.
383         * RSACryptoServiceProvider.cs: NET_2_0 cleanup. Added interface 
384         ICspAsymmetricAlgorithm (stub), fixed visibility of PublicOnly 
385         property.
386         * RijndaelManaged.cs: Use the new RijndaelManagedTransform for Fx 2.0.
387         * RijndaelManagedTransform.cs: New. Class is now public in Fx 2.0.
388
389 2004-06-23  Sebastien Pouliot  <sebastien@ximian.com>
390
391         * CryptoStream.cs: Removed the block reduction. This seems to be done
392         only for Decryptor so it was moved to SymmetricTransform.
393
394 2004-06-16  Sebastien Pouliot  <sebastien@ximian.com>
395
396         * SignatureDescription.cs: Implemented .ctor(SecurityElement) using
397         documentation from VS.NET 2005.
398
399 2004-06-10  Gert Driesen <drieseng@users.sourceforge.net>
400
401         * ToBase64Transform.cs: Uncomment finalizer to fix public API
402         signature
403
404 2004-05-29  Sebastien Pouliot  <sebastien@ximian.com>
405
406         * CspProviderFlags.cs: Reverted previous patch as UseExistingKey isn't
407         part of the 1.0/1.1 framework.
408
409 2004-05-29  Gert Driesen (drieseng@users.sourceforge.net)
410
411         * CspProviderFlags.cs: Added missing enum field UseExistingKey
412
413 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
414
415         * HashAlgorithm.cs: Added missing exception handling to ComputeHash,
416         TransformBlock and TransformFinalBlock.
417
418 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
419
420         * CryptoStream.cs: Fixed possible integer overflow.
421         * FromBase64Transform.cs: Better exception handling and fixed possible
422         integer overflow.
423         * RNGCryptoServiceProvider.cs: Changed RNG interface with the runtime
424         so it could be used in a thread-safe way with CryptoAPI.
425         * ToBase64Transform.cs: Better exception handling and fixed possible
426         integer overflow.
427
428 2004-05-07  Sebastien Pouliot  <sebastien@ximian.com>
429
430         * CipherMode.cs: Moved XML comments to monodoc.
431         * CryptoConfig.cs: Changed Array.Copy to Buffer.BlockCopy.
432         * CryptoStream.cs: Changed Array.Copy to Buffer.BlockCopy.
433         * DSA.cs: Changed Array.Copy to Buffer.BlockCopy.
434         * DSACryptoServiceProvider.cs: Fixed SignData to hash data before 
435         signing it (thanks to Jens Thiel for spotting this).
436         * ICryptoTransform.cs: Moved XML comments to monodoc.
437         * PasswordDeriveBytes.cs: Changed Array.Copy to Buffer.BlockCopy.
438         * FromBase64Transform.cs: Moved XML comments to monodoc.
439         * RSACryptoServiceProvider.cs: Fixed OID related exception in SignData.
440         * ToBase64Transform.cs: Input block may be smaller than a full block
441         when calling TransformFinalBlock (fix 2 CryptoStream unit tests).
442
443 2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>
444
445         * RSAOAEPKeyExchangeDeformatter.cs: Fixed wrt completed unit tests.
446         * RSAOAEPKeyExchangeFormatter.cs: Fixed wrt completed unit tests.
447         * RSAPKCS1KeyExchangeDeformatter.cs: Fixed wrt completed unit tests.
448         Added globalization to exceptions.
449         * RSAPKCS1KeyExchangeFormatter.cs: Fixed wrt completed unit tests.
450         * RSAPKCS1SignatureDeformatter.cs: Fixed wrt completed unit tests.
451         Added globalization to exceptions.
452         * RSAPKCS1SignatureFormatter.cs: Fixed wrt completed unit tests.
453         Added globalization to exceptions.
454         
455 2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>
456
457         * RC2.cs: Fixed KeySize to change it's value and the EffectiveKeySize
458         when the key is changed.
459         * RC2CryptoServiceProvider.cs: Added globalization to exceptions. 
460         Fixed the KeySize must be equal with EffectiveKeySize to match MS 
461         implementation.
462         * Rijndael.cs: Source clean up.
463         * RijndaelManaged.cs: Moved XML comments to monodoc. Added 
464         globalization to exceptions. 
465         * RNGCryptoServiceProvider.cs: Removed TODO and documented them in
466         mono doc. Now call runtime when a seed is provided.
467         * RSA.cs: Added globalization to exceptions. Removed check for 
468         <RSAKeyValue> as it is not checked by MS implementation.
469         * SHA1.cs: Moved XML comments to monodoc.
470         * SHA1CryptoServiceProvider.cs: Moved XML comments to monodoc. Removed
471         CLSCompliance attributes from private fields. 
472         * SHA256.cs: Moved XML comments to monodoc.
473         * SHA256Managed.cs: Moved XML comments to monodoc. Removed 
474         CLSCompliance attributes from   private fields.
475         * SHA384.cs: Moved XML comments to monodoc.
476         * SHA512.cs: Moved XML comments to monodoc.
477         * SignatureDescription.cs: Moved XML comments to monodoc. Added 
478         globalization to exceptions. Removed TODO and added notes to monodoc.
479         * SymmetricAlgorithm.cs: Moved XML comments to monodoc. Added 
480         globalization to exceptions.
481         * ToBase64Tranform.cs: Added missing exception handling. Moved XML 
482         comments to monodoc.
483         * TripleDES.cs: Added globalization to exceptions.
484         * TripleDESCryptoServiceProvider.cs: Changed Array.Copy to 
485         Buffer.BlockCopy. Zeroize decrypted data.
486
487 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
488
489         * HashAlgorithm.cs: Moved XML comments to monodoc. Added globalization
490         to exceptions.
491         * KeyedHashAlgorithm.cs: Added globalization to exceptions.
492         * KeySizes.cs: Moved XML comments to monodoc.
493         * MaskGenerationMethod.cs: Source clean up.
494         * MD5.cs: Moved XML comments to monodoc.
495         * MD5CryptoServiceProvider.cs: Removed CLSCompliance attributes from
496         private fields. Changed constants from enum to array. Zeroize data on
497         Dispose.
498         * PaddingMode.cs: Moved XML comments to monodoc.
499         * PasswordDeriveBytes.cs: Added globalization to exceptions. Removed 
500         TODO and documented as "not supported" in MonoDoc.
501         * RandomNumberGenerator.cs: Source clean up.
502
503 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
504
505         * DSACryptoServiceProvider.cs: Added globalization to exceptions.
506         * HMACSHA1.cs: Cleanup.
507         * SHA1CryptoServiceProvider.cs: Removed unused private methods.
508         * SHA1Managed.cs: Removed unused private methods.
509         * SHA384Managed.cs: Don't zeroize buffer on first initialization.
510         * SHA512Managed.cs: Don't zeroize buffer on first initialization.
511         
512 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
513
514         * Base64Constants.cs: New. Convert code into tables for better base64
515         performance.
516         * FromBase64Transform.cs: Updated to use the new tables. Source code
517         cleanup.
518         * SHA256Managed.cs: Updated to use shared constants.
519         * SHA384Managed.cs: Updated to use shared constants.
520         * SHA512Managed.cs: Updated to use shared constants.
521         * SHAConstants.cs: New. Shared constants for SHA implementations.
522         * ToBase64Transform.cs: Updated to use the new tables. Added 
523         globalization. Commented finalizer as it isn't required in this case.
524
525 2004-05-03  Sebastien Pouliot  <sebastien@ximian.com>
526
527         * CryptoConfig.cs: Specify version and public key token when loading
528         System.Security.dll for XML Digital Signature classes.
529
530 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
531
532         * DES.cs:
533         * DESCryptoServiceProvider.cs:
534         * RC2CryptoServiceProvider.cs:
535         * RijndaelManaged.cs:
536         * SHA384Managed.cs:
537         * SHA512Managed.cs:
538         * ToBase64Transform.cs:
539         Readonly/Constify.
540
541 2004-04-29  Sebastien Pouliot  <sebastien@ximian.com>
542
543         * DES.cs: Removed redundant weak/semi-weak key check in Key property.
544         * DESCryptoServiceProvider.cs: Implementation already had 100% 
545         coverage.
546
547 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
548
549         * DSACryptoServiceProvider.cs: Changed delegate signature.
550         * RSACryptoServiceProvider.cs: Changed delegate signature.
551
552 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
553
554         * DSA.cs: Moved XML comments to monodoc. Added globalization to 
555         exceptions. Already had 100% coverage.
556         * DSAParameters.cs: Moved XML comments to monodoc.
557         * DSASignatureDeformetter.cs: Added globalization to exceptions. 
558         Limited catch to expected exception. Already had 100% coverage.
559         * DSASignatureFormatter.cs: Added globalization to exceptions. Limited
560         catch to expected exception. Already had 100% coverage.
561
562 2004-04-26  Sebastien Pouliot  <sebastien@ximian.com>
563
564         * AsymmetricAlgorithm.cs: Moved XML comments to monodoc. Added 
565         globalization to exceptions. Already had 100% coverage.
566         * AsymmetricKeyExchangeDeformatter.cs: Moved XML comments to monodoc.
567         Already had 100% coverage.
568         * AsymmetricKeyExchangeFormatter.cs: Moved XML comments to monodoc.
569         Already had 100% coverage.
570         * AsymmetricSignatureDeformatter.cs: Moved XML comments to monodoc.
571         Already had 100% coverage.
572         * AsymmetricSignatureFormatter.cs: Moved XML comments to monodoc.
573         Already had 100% coverage.
574         * CryptoAPITransform.cs: Unused by Mono (added note to monodoc).
575         Class will stay at 0% coverage.
576         * CryptoConfig.cs: Added globalization to exceptions. 98% coverage.
577         * CryptographicException.cs: Added globalization to exceptions. 
578         Already had 100% coverage.
579         * CryptoStream.cs: Added globalization to exceptions. Removed (unused)
580         field _previousBlock to get 100% coverage.
581         * CspParameters.cs: Moved XML comments to monodoc. Already had 100% 
582         coverage.
583         * CspProviderFlags.cs: Moved XML comments to monodoc.
584         * DeriveBytes.cs: Moved XML comments to monodoc. Already had 100% 
585         coverage.
586         * DES.cs: Fixes to weak/semi-weak checking to pass new unit tests (it
587         requires to set odd parity on keys before comparing).
588
589 2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
590
591         * DSACryptoServiceProvider.cs: Call invariant compare
592
593 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
594
595         * DSA.cs: Use Mono.Security.BitConverterLE
596
597 2004-04-05  Bernie Solomon  <bernard@ugsolutions.com>
598
599         * DESCryptoServiceProvider.cs: Use BitConverter.IsLittleEndian
600         to fix for big endian machines.
601
602 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
603
604         * FromBase64Transform.cs: Now throws ObjectDisposedException and
605         return true for CanReuseTransform (as MS implementation).
606
607 2004-03-09  Atsushi Enomoto  <atsushi@ximian.com>
608
609         * DSA.cs : fixed incorrectly modified catch for debugging.
610
611 2004-03-09  Atsushi Enomoto  <atsushi@ximian.com>
612
613         * DSA.cs : In ToXmlString(), sequence of Seed and PgenCounter is
614           optional.
615
616 2004-02-26  Sebastien Pouliot  <sebastien@ximian.com>
617
618         * DES.cs: Same fix as for SymmetricAlgorithm (get_Key is 
619         overridden to check for weak keys). Also ensured that no weak keys
620         would be generated.
621         * SymmetricAlgorithm.cs: Return a copy of the key (and IV) so it 
622         doesn't get destroyed when dispose is called (in this case the key
623         zeroization is the caller's responsability). Match MS implementation.
624         * TripleDES.cs: Same fix as for SymmetricAlgorithm (get_Key is 
625         overridden to check for weak keys). Fix bugzilla #54868.
626
627 2004-02-12  Sebastien Pouliot  <sebastien@ximian.com>
628
629         * CryptoStream.cs: Remove the _blockSize assumptions because some 
630         Transforms could be different on Input/Output. Added a special case
631         for cascading CryptoStreams in FlushFinalBlock.
632
633 2004-02-09  Sebastien Pouliot  <sebastien@ximian.com>
634
635         * DSACryptoServiceProvider.cs: Fixed support for key pair persistence.
636         It now requires (like MS) to call Clear to delete an existing 
637         container. PersistKeyInCsp default value also changes if a 
638         CspParameters is supplied (or not) to the constructor.
639         * RSACryptoServiceProvider.cs: Same fixes as DSA.
640         * SymmetricAlgorithm.cs: Reintroduced the patch from 2003-08-24 to fix
641         IV length exception for stream ciphers (e.g. RC4). I overwrote it by
642         accident some time ago :(
643
644 2004-02-08  Sebastien Pouliot  <sebastien@ximian.com>
645
646         * HashAlgorithm.cs: Changed the ComputeHash(Stream) method to (a) not
647         allocate the whole stream memory (big memory saver as suggested by
648         Peter Williams in bugzilla entry #54022) and (b) to never use Stream.
649         Length and Stream.Position because they aren't implemented for every
650         stream class (similar issue to the CryptoStream patch).
651         * MD5CryptoServiceProvider.cs: Moved a buffer allocation from 
652         ProcessBlock to constructor to reduce memory allocation. Optimization
653         suggested by Peter Williams in bugzilla entry #54024.
654
655 2004-02-06  Sebastien Pouliot  <sebastien@ximian.com>
656
657         * DSACryptoServiceProvider.cs: Added keypair persistence support.
658         Corrected dispose so object cannot be disposed multiple time. Added
659         PublicOnly property (as internal before 1.2, public after).
660         * RSACryptoServiceProvider.cs: Added keypair persistence support.
661         Corrected dispose so object cannot be disposed multiple time. Added
662         PublicOnly property (as internal before 1.2, public after).
663         * SymmetricAlgorithm.cs: Removed class SymmetricTransform from file
664         and moved it to Mono.Security.Cryptography namespace. The transform
665         class will also be included in Mono.Security assembly.
666
667 2004-02-06  David Sheldon <dave-mono@earth.li>
668
669   * FromBase64Transform.cs: Improved code layout to match coding style, 
670    and removed the Byte comparison with -1.
671
672 2004-02-04  Sebastien Pouliot  <sebastien@ximian.com>
673
674         * CryptoStream.cs: New implementation - should fix all known issues
675         with the class (Read/WriteByte, reading by non-multiple of the
676         block size, using Stream.Length and Stream.Position ...).
677         * SymmetricAlgorithm.cs: Return an empty array when there's nothing
678         to return (required for CryptoStream to work).
679
680 2004-01-31  David Sheldon      <dave-mono@earth.li>
681
682         * FromBase64Transform.cs: Removed needless catch and rethrow.
683
684 2004-01-31  David Sheldon      <dave-mono@earth.li>
685
686         * FromBase64Transform.cs: Fixes to what happens if a character in the
687         input stream is not in the lookup table. IndexOutOfRangeException was 
688         wrong.
689
690 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
691
692         * CryptoConfig.cs: Now use internal Environment.GetMachineConfigPath()
693         to find machine.config. Initialization removed from static constructor
694         to speed up 98% of software that do not requires it.
695         * SymmetricAlgorithm.cs: Fixed padding for None and Zeros modes. Unit
696         tests for padding modes are now in PaddingModeTest.cs.
697
698 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
699
700         * HMAC.cs: Fix compilation warnings.
701
702 2003-12-10  Mark Crichton  <crichton@gimp.org>
703
704         * RNGCryptoServiceProvider.cs: Removed icall to GetNonZeroBytes. Now
705         done with managed code.
706
707 2003-11-13  Sebastien Pouliot  <spouliot@videotron.ca>
708
709         * ProtectedData.cs: Added exceptions - core is still TODO.
710         * ProtectedMemory.cs: Added exceptions - core is still TODO.
711
712 2003-11-11  Sebastien Pouliot  <spouliot@videotron.ca>
713
714         * Rfc2898DeriveBytes.cs: Now handle resets and keys longer than 160 
715         bits (HMACSHA1 block size). Removed TODO.
716         * SymmetricAlgorithm.cs: Fixed decryption when inputOffset > 0.
717         [#50826].
718
719 2003-11-10  Sebastien Pouliot  <spouliot@videotron.ca>
720
721         * Rfc2898DeriveBytes.cs: Implementation for PKCS5 PBKDF2. It works
722         except for the Reset() part - which implies some kind of Resume.
723
724 2003-11-09  Sebastien Pouliot  <spouliot@videotron.ca>
725
726         * CryptoConfig.cs: Updated for RIPEMD160 and HMAC.
727         * CspKeyContainerInfo.cs: New (1.2). Information about CSP based key
728         containers.
729         * DataProtectionScope.cs: New (1.2). Enumeration for ProtectedData.
730         * HMAC.cs: New (1.2). Base class for all HMAC. Code is mostly copied 
731         from internal Mono.Security.Cryptography.HMACAlgorith.cs.
732         * HMACMD5.cs: New (1.2). HMAC implementation using MD5.
733         * HMACRIPEMD160.cs: New (1.2). HMAC implementation using RIPEMD160.
734         * HMACSHA1.cs: Modified to derive from HMAC for .NET 1.2.
735         * HMACSHA256.cs: New (1.2). HMAC implementation using SHA256.
736         * HMACSHA384.cs: New (1.2). HMAC implementation using SHA384.
737         * HMACSHA512.cs: New (1.2). HMAC implementation using SHA512.
738         * ICspAsymmetricAlgorithm.cs: New (1.2). Interface for CSP based 
739         asymmetric algorithm.
740         * KeyNumber.cs: New (1.2). Enumeration for CspKeyContainerInfo.
741         * MemoryProtectionScope.cs: New (1.2). Enumeration for ProtectedMemory.
742         * PaddingMode.cs: Added two new padding modes to enumeration (for 1.2).
743         * ProtectedData.cs: New (1.2). ProtectedData without protection (TODO).
744         * ProtectedMemory.cs: New (1.2). Stub for ProtectedMemory.
745         * Rfc2898DeriveBytes.cs: New (1.2). Stub for PKCS5 PBKDF2.
746
747 2003-11-08  Sebastien Pouliot  <spouliot@videotron.ca>
748
749         * RIPEMD160.cs: New (1.2). Abstract class for RIPEMD160 hash from 
750         Pieter Philippaerts (Pieter@mentalis.org)
751         * RIPEMD160Managed.cs: New (1.2). Implementation of the RIPEMD160 hash
752         algorithm from Pieter Philippaerts (Pieter@mentalis.org)
753
754 2003-10-07  Sebastien Pouliot  <spouliot@videotron.ca>
755
756         * CryptoStream.cs: Commented CanTransformMultipleBlocks
757         optimization - it simply doesn't work :(
758
759 2003-10-04  Sebastien Pouliot  <spouliot@videotron.ca>
760
761         * CryptoStream.cs: Fixed bug 49323. The CanTransformMultipleBlocks
762         optimization in Read has been fixed for partial blocks.
763
764 2003-09-11  Lluis Sanchez Gual  <lluis@ximian.com>
765
766         * CryptoStream.cs: Added [In,Out] attributes to Read method.
767
768 2003-08-24  Sebastien Pouliot  <spouliot@videotron.ca>
769
770         * SymmetricAlgorithm.cs: Fixed IV length exception for stream ciphers
771         (e.g. RC4) which don't uses IV. This needs more tests for small IV...
772
773 2003-08-09  Sebastien Pouliot  <spouliot@videotron.ca>
774
775         * SymmetricAlgorithm.cs: Re-introduced Lluis patch for PaddingMode.None 
776         and PaddingMode.Zeros (not PaddingMode.PKCS7).
777
778 2003-08-05  Sebastien Pouliot  <spouliot@videotron.ca>
779
780         * CryptoStream.cs: Closing bug #40689. The Write method was re-written.
781         * SymmetricAlgorithm.cs: Removed Lluis previous patch (it fails a unit
782         test) and corrected a bug in FinalDecrypt.
783         * RSACryptoServiceProvider.cs: Fixed different exceptions from .NET 1.0
784         and 1.1.
785
786 2003-07-31  Sebastien Pouliot  <spouliot@videotron.ca>
787
788         * CryptoStream.cs: Closing bug #46143. The Read method was re-written.
789
790 2003-07-30  Sebastien Pouliot  <spouliot@videotron.ca>
791
792         * CryptoStream.cs: Fixed bug #46143 (exception) - however we dont 
793         returns the same result as MS. Class needs to be re-written.
794
795 2003-07-09  Lluis Sanchez Gual  <lluis@ximian.com>
796
797         * SymmetricAlgorithm.cs: Fixed FinalEncrypt. Return empty array if inputCount is 0.
798
799 2003-07-05  Sebastien Pouliot  <spouliot@videotron.ca>
800
801         * AsymmetricAlgorithm.cs: Removed AsymmetricParameters (IReader) class. 
802         Now uses the new Mono.Xml.SecurityParser (xml -> SecurityElement)
803         * CryptoConfig.cs: Removed CorlibHandler and CorlibReader classes. Now 
804         uses the new Mono.Xml.SecurityParser (xml -> SecurityElement)
805         * DSA.cs: Removed DSAHandler (IHandler) class. Now uses the new 
806         Mono.Xml.SecurityParser (xml -> SecurityElement)
807         * DSACryptoServiceProvider.cs: Added ObjectDisposedException support
808         and fixed bugs found in new unit tests.
809         * RSA.cs: Removed DSAHandler (IHandler) class. Now uses the new 
810         Mono.Xml.SecurityParser (xml -> SecurityElement)
811         * RSACryptoServiceProvider.cs: Added ObjectDisposedException support
812         and fixed bugs found in new unit tests.
813
814 2003-06-22  Sebastien Pouliot <spouliot@motus.com>
815
816         * DSACryptoServiceProvider.cs: Added UseMachineKeyStore property (1.1).
817         * RSACryptoServiceProvider.cs: Added UseMachineKeyStore property (1.1).
818
819 2003-06-11  Sebastien Pouliot <spouliot@motus.com>
820
821         * DSACryptoServiceProvider.cs: Refactored from orginal by splitting 
822         much core functionalities into DSAManaged. 
823         * RSACryptoServiceProvider.cs: Refactored from orginal by splitting 
824         much core functionalities into RSAManaged. 
825         * RSAPKCS1SignatureDeformatter.cs: Updated to use the new PKCS#1 API.
826         Now works with any hash algorithm (which OID is defined in machine.config)
827         * RSAPKCS1SignatureFormatter.cs: Updated to use the new PKCS#1 API.
828         Now works with any hash algorithm (which OID is defined in machine.config)
829
830 2003-06-09  Sebastien Pouliot <spouliot@motus.com>
831
832         * CryptoConfig.cs: Now support OID in machine.config.
833         * DSACryptoServiceProvider.cs: Changed USE_VERSION_1_0 for NET_1_0.
834         * KeySizes.cs: Changed USE_VERSION_1_0 for NET_1_0.
835         * MD5CryptoServiceProvider.cs: Changed USE_VERSION_1_0 for NET_1_0.
836         * RNGCryptoServiceProvider.cs: Changed USE_VERSION_1_0 for NET_1_0.
837
838 2003-05-12  Sebastien Pouliot  <spouliot@videotron.ca>
839
840         * PKCS1MaskGenerationMethod.cs: Added comment to justify why
841         the class is no more compatible with MS implementation (the bug
842         was preventing OAEP to work properly).
843
844 2003-05-09  Sebastien Pouliot  <spouliot@videotron.ca>
845
846         * DSACryptoServiceProvider.cs: Class is now sealed in v.1.1.
847         * KeySizes.cs: Class is now sealed in v.1.1.
848         * MD5CryptoServiceProvider.cs: Class is now sealed in v.1.1.
849         * RNGCryptoServiceProvider.cs: Class is now sealed in v.1.1.
850
851 2003-04-22  Sebastien Pouliot  <spouliot@videotron.ca>
852
853         * DSACryptoServiceProvider.cs: Changed key generation to use the
854         new BigInteger class (commited for Ben Maurer).
855         * RSACryptoServiceProvider.cs: Changed key generation to use the
856         new BigInteger class (commited for Ben Maurer).
857
858 2003-04-06  Sebastien Pouliot  <spouliot@videotron.ca>
859
860         * AsymmetricAlgorithm.cs: Moved IsLegalKeySize to KeySizes.cs.
861         * DSACryptoServiceProvider.cs: Fix bug where key generation always
862         resulted in 1024 bits keypair.
863         * KeySizes.cs: Added internal IsLegalKeySize and IsLegal to avoid
864         duplication in both AsymmetricAlgorithm and SymmetricAlgorithm.
865         * RC2.cs: Modified to use IsLegalKeySize from KeySizes.cs.
866         * RSACryptoServiceProvider.cs: Fix bug where key generation always
867         resulted in 1024 bits keypair. Should fix unit test failure under
868         Linux.
869         * SymmetricAlgorithm.cs: Moved IsLegalKeySize to KeySizes.cs.
870
871 2003-04-06  Sebastien Pouliot  <spouliot@videotron.ca>
872
873         * CryptoStream.cs: Partial fix for bug #40689 (workaround). Does not 
874         throw a NotSupportedException on closing a CryptoStream in read mode
875         (like MS does but unlike MS documents).
876
877 2003-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
878
879         * CryptoStream.cs: fixed the previous fix. MS throws a NotSupportedExc
880         when FlushFinalBlock is called twice. I've moved a few lines from Close
881         to FlushFinalBlock and added the exception check.
882
883 2003-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
884
885         * CryptoStream.cs: don't Close the underlying stream in FlushFinalBlock.
886         Fixes bug #40394.
887
888 2003-03-03  Sebastien Pouliot  <spouliot@videotron.ca>
889
890         * RSACryptoServiceProvider.cs: Delay keypair generation event when 
891         keysize is a constructor parameter (major speed improvment when
892         importing keys). Removed NotSupportedException when CspParameter is
893         used in constructor (required for forthcoming security tools).
894
895 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
896
897         * Changes to refer Mono.Math and Mono.Security.Cryptography
898         * Changes to refer Mono.Xml
899
900 2003-02-04  Sebastien Pouliot  <spouliot@videotron.ca>
901
902         * CryptoConfig.cs: Added initital support for "machine.config" 
903         (limited to algorithms, not OIDs). Modified CreateFromName to use
904         the fully qualified class names (and removed xmldsig hack). Added
905         algorithm names documented in book ".NET Framework Security".
906
907 2003-02-03  Sebastien Pouliot  <spouliot@videotron.ca>
908
909         * PasswordDeriveBytes.cs: Finally got the derivation right. The
910         class can now derive keys up to 1000 * HashSize (same limit as MS).
911         * RSAPKCS1SignatureDeformatter.cs: No need to create the hash object
912         in this class - the OID is enough.
913
914 2003-02-01  Sebastien Pouliot  <spouliot@videotron.ca>
915
916         * AsymmetricSignatureFormatter.cs: Call abstract SetHashAlgorithm
917         when CreateSignature(hash) is called.
918         * CryptoStream.cs: Fixed some issues in constructor.
919         * DSACryptoServiceProvider.cs: Fixed a bug (1 chance in 256) that
920         a signature could be less than 40 bytes (which is invalid).
921
922 2003-01-25  Sebastien Pouliot  <spouliot@videotron.ca>
923
924         * CryptographicException.cs: Default HResult to CORSEC_E_CRYPTO
925         (0x80131430) as documented.
926         * CryptographicUnexpectedOperationException.cs: Default HResult
927         to CORSEC_E_CRYPTO_UNEX_OPER (0x80131431) as documented.
928
929 2003-01-20  Sebastien Pouliot  <spouliot@videotron.ca>
930
931         * CipherMode.cs: Added missing [Serializable] to enum.
932         * CspProviderFlags.cs: Added missing [Serializable] to enum.
933         * FromBase64Transform.cs: Added missing [Serializable] to enum.
934         * PaddingMode.cs: Added missing [Serializable] to enum.
935
936 2003-01-19  Sebastien Pouliot  <spouliot@videotron.ca>
937
938         * CryptoTools.cs: Added internal class BlockProcessor to help
939         implementation of block-based algorithms (like MAC and HMAC).
940         * HMACSHA1.cs: Refactored to remove dependencies on CryptoStream,
941         better constructors and Dispose support.
942         * MACTripleDES.cs: Refactored to reuse new HMACSHA1 stuff, better
943         constructors.
944
945 2003-01-18  Sebastien Pouliot  <spouliot@videotron.ca>
946
947         * HMACSHA1.cs: Now use KeyBuilder to build the default key.
948
949 2003-01-12  Sebastien Pouliot  <spouliot@videotron.ca>
950
951         * MACTripleDES.cs: Now working (the problem was with my stream usage
952         which was removed for performance reason).
953         * TripleDES.cs: Fixed key generation (wasn't called and returned
954         null).
955
956 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
957
958         * RNGCryptoServiceProvider.cs: Changed methods interacting with 
959         the runtime as Internal<MethodName>. This will allow to make the
960         class Windows-compatible by doing a switch at runtime.
961
962 2003-01-05  Sebastien Pouliot  <spouliot@videotron.ca>
963
964         * CryptoAPITransform.cs: Removed all TODO. This class will not be
965         used by Mono. MS uses it with <algo>CryptoServiceProvider classes 
966         to provide a common ICryptoTransform access to CryptoAPI. 
967
968 2003-01-03  Sebastien Pouliot  <spouliot@videotron.ca>
969
970         * RC2CryptoServiceProvider.cs: Now about 2 time faster by inlining 
971         methods and changing to UInt16 (instead of UInt32). 
972
973 2003-01-02  Sebastien Pouliot  <spouliot@videotron.ca>
974
975         * RijndaelManaged.cs: Now 7 (encrypt) to 10 (decrypt) times faster 
976         by removing allocation inside intensively called methods, using pre-
977         calculated tables instead of Mult_GF methods and inlining most methods.
978
979 2002-12-31  Sebastien Pouliot  <spouliot@videotron.ca>
980
981         * AsymmetricAlgorithm.cs: Removed ValidKeySize (method only present
982         in SymmetricAlgorithm).
983         * DSA.cs: Change ZeroizePrivateKey from protected to internal.
984         * DSACryptoServiceProvider.cs: Added some case where we need to check 
985         for keypairGenerated.
986         * RSA.cs: Change ZeroizePrivateKey from protected to internal.
987         * RSACryptoServiceProvider.cs: Key were never generated with the default
988         (no parameter) constructor. Now checks for keypairGenerated in methods.
989         * SignatureDescription.cs: Added CreateDeformatter in RSAPKCS1SHA1-
990         SignatureDescription to please corcompare (it just call it's ancestor).
991
992 2002-12-30  Sebastien Pouliot  <spouliot@videotron.ca>
993
994         * CryptoStream.cs: Implemented core. Not sure about many details - 
995         but it run the samples now (#30256).
996         * CryptoStreamMode.cs: Added [Serializable] to enum declaration.
997         * SymmetricAlgorithm.cs: Made some changes required for CryptoStream 
998         and to match more closely MS implementation. Also added little
999         optimizations in TransformBlock.
1000
1001 2002-12-27  Sebastien Pouliot  <spouliot@videotron.ca>
1002
1003         * CryptoTools.cs: New. Shared classes for cryptography. Now
1004         includes a KeyBuilder to generate symmetric keys and IV.
1005         * DES.cs: Modified Key validation.
1006         * DESCryptoServiceProvider.cs: Implemented Key and IV using
1007         KeyBuilder.
1008         * RC2CryptoServiceProvider.cs: Implemented Key and IV using
1009         KeyBuilder (and removed TODO).
1010         * RijndaelManaged.cs: Implemented Key and IV using KeyBuilder 
1011         (and removed TODO).
1012         * SHA384Managed.cs: Changed code to remove compiler warning.
1013         * SHA512Managed.cs: Changed code to remove compiler warning.
1014         * SymmetricAlgorithm.cs: Removed TODO on IV.
1015         * TripleDESCryptoServiceProvider.cs: Implemented Key and IV
1016         using KeyBuilder (and removed TODO).
1017
1018 2002-11-20  Sebastien Pouliot  <spouliot@videotron.ca>
1019
1020         * AsymmetricSignatureDeformatter.cs: Added exception handling in
1021         VerifySignature (moved from RSAPKCS1SignatureDeformatter).
1022         * AsymmetricSignatureFormatter.cs: Added exception handling in
1023         CreateSignature (moved from RSAPKCS1SignatureFormatter).
1024         * CryptoAPITransform.cs: Removed "= false" assignation from a private
1025         member (because this created an unwanted "ghost" constructor) and 
1026         modified Dispose declaration.
1027         * HashAlgorithm.cs: Removed destructor. Disposing unmanaged 
1028         ressources is the responsability of each class (not an abstract class).
1029         * RSAPKCS1SignatureDeformatter.cs: Removed a VerifySignature method
1030         which was present in the base class AsymmetricSignatureDeformatter.
1031         * RSAPKCS1SignatureFormatter.cs: Removed a CreateSignature method
1032         which was present in the base class AsymmetricSignatureFormatter.
1033         * SHA1Managed.cs: Removed sealed from class declaration. Removed 
1034         destructor and Dispose method as class is fully managed.
1035         * ToBase64Transform.cs: Added virtual to property CanReuseTransform.
1036
1037 2002-11-17  Sebastien Pouliot  <spouliot@videotron.ca>
1038
1039         * CryptoConfig.cs: Added full classes name for MapNameToOID.
1040         * PKCS1.cs: New. Internal class for the various primitives defined
1041         in PKCS#1 v.2.1.
1042         * PKCS1MaskGenerationFunction.cs: Modified to use PKCS1.cs.
1043         * RSA.cs: Added internal class RSAHandler (which implements IHandler
1044         interface for MiniParser) to import RSA keypairs from XML strings.
1045         * RSACryptoServiceProvider.cs: Crypto implemented using BigInteger. 
1046         Key generation is VERY LONG.
1047         * RSAOAEPKeyExchangeDeformatter.cs: Completed using PKCS1. Not sure 
1048         of the results as this is not available in all versions of Windows.
1049         * RSAOAEPKeyExchangeFormatter.cs: Completed using PKCS1. Not sure 
1050         of the results as this is not available in all versions of Windows.
1051         * RSAPKCS1KeyExchangeDeformatter.cs: Completed using PKCS1.
1052         * RSAPKCS1KeyExchangeFormatter.cs: Completed using PKCS1.
1053         * RSAPKCS1SignatureDeformatter.cs: Completed using PKCS1.
1054         * RSAPKCS1SignatureFormatter.cs: Completed using PKCS1.
1055
1056 2002-11-17  Sebastien Pouliot  <spouliot@videotron.ca>
1057
1058         * MiniParser.cs: Added explicit cast in order to compile with mcs.
1059
1060 2002-11-16  Sebastien Pouliot  <spouliot@videotron.ca>
1061
1062         * AsymmetricAlgorithm.cs: Added internal class AsymmetricParameters
1063         (which implements the IReader interface for MiniParser). Corrected
1064         Dispose declaration.
1065         * BigInteger.cs: New. Internal class for handling BIG integers for 
1066         asymmetric crypto (both RSA and DSA). Thanks to Chew Keong TAN !
1067         * CryptoConfig.cs: Added XMLDSIG URLs in CreateFromName.
1068         Will dynamically load System.Security.dll, when required,
1069         to return instance of those classes. Also CryptoConfig can now
1070         create any object (e.g. System.IO.MemoryStream) !
1071         * DSA.cs: Added internal class DSAHandler (which implements IHandler
1072         interface for MiniParser) to import DSA keypairs from XML strings.
1073         * DSACryptoServiceProvider.cs: Crypto fully implemented using 
1074         BigInteger. Key generation (group) is VERY long.
1075         * MiniParser.cs: New. Minimal XML parser by Sergey Chaban. Used to 
1076         import keypairs in XML strings.
1077         * SignatureDescription.cs: Removed local CreateFromName (to use
1078         CryptoConfig - which actually can create anything). Added internal
1079         classes DSASignatureDescription and RSAPKCS1SHA1SignatureDescription.
1080
1081 2002-11-15  Sebastien Pouliot  <spouliot@videotron.ca>
1082
1083         * CryptographicUnexpectedOperationException.cs: Forgot it last time!
1084         * FromBase64Transform.cs: Added missing virtual to CanReuseTransform.
1085         Changed Dispose().
1086         * HashAlgorithm.cs: Changed Dispose().
1087         * MD5CryptoServiceProvider.cs: Added destructor and Dipose(bool).
1088         * PasswordDeriveBytes.cs: Changed some declaration from
1089         protected to private.
1090         * RC2.cs: Added valid keysize check in EffectiveKeySize.
1091         * RC2CryptoServiceProvider.cs: Overriden EffectiveKeySize to match
1092         corlib declarations.
1093         * RSAOAEPKeyExchangeDeformatter.cs: Changed some declaration from
1094         protected to private.
1095         * RSAOAEPKeyExchangeFormatter.cs: Changed some declaration from
1096         protected to private.
1097         * RSAPKCS1KeyExchangeDeformatter.cs: Changed some declaration from
1098         protected to private.
1099         * RSAPKCS1KeyExchangeFormatter.cs: Changed some declaration from
1100         protected to private.
1101         * RSAPKCS1SignatureDeformatter.cs: Changed some declaration from
1102         protected to private.
1103         * RSAPKCS1SignatureFormatter.cs: Changed some declaration from
1104         protected to private.
1105         * SHA1CryptoServiceProvider.cs: Moved SHA1 code to SHA1Internal.
1106         SHA1CryptoServiceProvider now use SHA1Internal. Added Dispose and
1107         destructor.
1108         * SHA1Managed.cs: New. Use SHA1Internal. Same as 
1109         SHA1CryptoServiceProvider but is required for binary compatibility.
1110         * SHA256Managed.cs: Changed some declaration from protected to private.
1111         * SHA384Managed.cs: Changed some declaration from protected to private.
1112         * SHA512Managed.cs: Changed some declaration from protected to private.
1113         * SymmetricAlgorithm.cs: Added Clear(), changed Dispose() and added
1114         virtual to Dispose(bool).
1115         * ToBase64Transform.cs: Added missing virtual to CanReuseTransform.
1116         Changed Dispose().
1117         * TripleDESCryptoServiceProvider.cs: Added missing sealed to class
1118         declaration.
1119
1120 2002-11-03  Sebastien Pouliot  <spouliot@videotron.ca>
1121
1122         * CryptoAPITransform.cs: Added missing CanReuseTransform property,
1123         Clear method, destructor and IDisposable support.
1124         * CryptographicException.cs: Added missing protected constructor.
1125         * CryptographicUnexpectedOperationException.cs: Added missing 
1126         protected constructor.
1127         * ICryptoTransform.cs: Added missing CanReuseTransform property.
1128         * FromBase64Transform.cs: Added missing CanReuseTransform property,
1129         Clear method, destructor and IDisposable support.
1130         * SymmetricAlgorithm.cs: Implement IDisposable.
1131         * ToBase64Transform.cs: Added missing CanReuseTransform property,
1132         Clear method, destructor and IDisposable support.
1133
1134 2002-11-02  Sebastien Pouliot  <spouliot@videotron.ca>
1135
1136         * SignatureDescription.cs: Updated class to match unit test results
1137         * X509Certificate.cs: REMOVED! Wrong namespace. An almost complete
1138         implementation is now in System.Security.Cryptography.X509Certificates
1139
1140 2002-11-01  Sebastien Pouliot  <spouliot@videotron.ca>
1141
1142         * bouncycastle.txt: Bouncy Castle JCE License.
1143         * SHA384Managed.cs: Hash implementation based on BouncyCastle JCE.
1144         * SHA512Managed.cs: Hash implementation based on BouncyCastle JCE.
1145
1146 2002-10-30  Sebastien Pouliot  <spouliot@videotron.ca>
1147
1148         * DSASignatureDeformatter.cs: Fully implemented - however it 
1149         requires a functionnal DSA implementation to work.
1150         * DSASignatureFormatter.cs: Fully implemented - however it 
1151         requires a functionnal DSA implementation to work.
1152
1153 2002-10-25  Sebastien Pouliot  <spouliot@videotron.ca>
1154
1155         * PasswordDeriveBytes.cs: New. PKCS#5 key derivation (PBKDF1) works up to
1156         HashSize length (but MS support longer keys)
1157
1158 2002-10-24  Sebastien Pouliot  <spouliot@videotron.ca>
1159
1160         * RSACryptoServiceProvider.cs: New. Implemented most logic expect crypto 
1161         * RSAOAEPKeyExchangeDeformatter.cs: New. Stub.
1162         * RSAOAEPKeyExchangeFormatter.cs: New. Stub.
1163         * RSAPKCS1KeyExchangeDeformatter.cs: New. Stub.
1164         * RSAPKCS1KeyExchangeFormatter.cs: New. 98% implemented but still
1165         require RSA.DecryptValue (not supported in MS .NET Framework)
1166         * RSAPKCS1SignatureDeformatter.cs: New. Stub.
1167         * RSAPKCS1SignatureFormatter.cs: New. Stub.
1168
1169 2002-10-23  Sebastien Pouliot  <spouliot@videotron.ca>
1170
1171         * SymmetricAlgorithm.cs: Fixed CFB mode (do encryption while decrypting!)
1172         * TripleDESCryptoServiceProvider.cs: Ajusted for CFB.
1173
1174 2002-10-22  Sebastien Pouliot  <spouliot@videotron.ca>
1175
1176         * RjindaelManaged.cs: Fixed decryption for 192 and 256 bit block size
1177
1178 2002-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1179
1180         * RC2CryptoServiceProvider.cs: fixed end of lines (changed from \r
1181         to \n).
1182
1183 2002-10-20  Sebastien Pouliot  <spouliot@videotron.ca>
1184
1185         * SymmetricAlgorithm.cs: Added better Dispose support
1186         * DES.cs: Now only contains the abstract DES class.
1187         * DESCryptoServiceProvider.cs: Added the DESTransform class (inherited
1188         from SymmetricTransform) based the old DESCore and DESTransformBase code
1189         * RC2.cs: Fixed EffectiveKeySize == 0
1190         * RC2CryptoServiceProvider.cs: Added the RC2Transform class (inherited
1191         from SymmetricTransform) based on the old RC2lImpl code. Unrolled some loops.
1192         * RjindaelManaged.cs: Few more optimizations while looking for decrypting bug
1193         * TripleDESCryptoServiceProvider.cs: New. Implement TripleDESTransform from 
1194         DESTransform (non-optimal but working :-).
1195
1196 2002-10-19  Sebastien Pouliot  <spouliot@videotron.ca>
1197
1198         * SymmetricAlgorithm.cs: Added new class SymmetricTransform to avoid
1199         duplicating CipherMode (currently ECB, CBC) and PaddingMode functionalities
1200         in every crytographic algorithm implementation.
1201         * RijndaelManaged.cs: Added the RjindaelTransform class (inherited
1202         from SymmetricTransform) based the old RijndaelImpl / RijndaelController 
1203         code. Fixed encryption for block size 192, 256, there is still a problem
1204         decrypting block size 192, 256. Unrolled some loops + littl'optimizations
1205         * PKCS1MaskGenerationMethod.cs: Removed Array.Reverse in I2OSP to be
1206         compatible with MS implementation (however we are now failing the PKCS#1
1207         test vector) + added some more checks (null, overflow, ...)
1208         * AsymmetricAlgorithm.cs: Commented XMLDocument stuff to end the cyclic
1209         dependency (corlib->System.Xml->corlib)
1210         * RSA.cs: Commented FromXmlString stuff to end the cyclic dependency
1211         * DSA.cs: Commented FromXmlString stuff to end the cyclic dependency
1212         * RC2.cs: Create using CryptoConfig
1213         * TripleDES.cs: Marked class public. Added LegalKeySizes and LegalBlockSizes
1214
1215 2002-10-14  Sebastien Pouliot  <spouliot@videotron.ca>
1216
1217         * MD5.cs: Create using CryptoConfig, set HashSizeValue, removed TODO.
1218         * Rijndael.cs: Create using CryptoConfig. Removed TODO.
1219         * RSAParameters.cs: Modulus must be serialized. Removed TODO.
1220         * SHA256.cs: Create using CryptoConfig, set HashSizeValue, removed TODO.
1221         * SHA384.cs: Create using CryptoConfig, set HashSizeValue, removed TODO.
1222         * SHA512.cs: Create using CryptoConfig, set HashSizeValue, removed TODO.
1223         * FromBase64Transform.cs: Removed ToString()
1224         * ToBase64Transform.cs: Removed ToString()
1225         * SymmetricAlgorithm.cs: Create using CryptoConfig, set default Mode and 
1226         Padding, added Clear, Dispose
1227         * TripleDES.cs: New. Abstract class.
1228         * MaskGenerationMethod.cs: New. Abstract class.
1229         * PKCS1MaskGenerationMethod.cs: New. Implement PKCS#1 MGF (currently not 
1230         compatible with MS implementation - but not sure the bug is mine!).
1231
1232 2002-10-13  Sebastien Pouliot  <spouliot@videotron.ca>
1233
1234         * HashAlgorithm.cs: Added Dispose() to HashAlgorithm because it 
1235         inherits ICryptoTransform
1236         * KeyedHashAlgorithm.cs: New implementation
1237         * HMACSHA1.cs: New (include a generic HMACAlgorithm as internal class)
1238         * MACTripleDES.cs: New (missing core implementation on generic MACAlgorithm)
1239         * CryptoStream.cs: Added limited functionalities to support HMACSHA1
1240
1241 2002-10-12  Sebastien Pouliot  <spouliot@videotron.ca>
1242
1243         * DSA.cs: changed constructor to public from internal (like MS)
1244         * HashAlgorithm.cs: Completed ComputeHash methods
1245         * SHA1.cs: Added HashSizeValue = 160
1246
1247 2002-10-12  Sebastien Pouliot  <spouliot@videotron.ca>
1248
1249         * ICryptoTransform.cs: Now inherits from IDisposable
1250         * RC2CryptoServiceProvider.cs: Added Dispose() to RC2Impl because it inherits ICryptoTransform
1251         * CryptoAPITransform.cs: Added Dispose() to CryptoAPITransform... ICryptoTransform
1252         * RijndaelManaged.cs: Added Dispose() to RijndaelController...ICryptoTransform
1253         * FromBase64Transform.cs: Added Dispose() to FromBase64Transform...ICryptoTransform
1254         * ToBase64Transform.cs: Added Dispose() to ToBase64Transform...ICryptoTransform
1255         * DESCryptoServiceProvider.cs: Added Dispose() to DESTransformBase...ICryptoTransform
1256
1257 2002-10-11  Duncan Mak  <duncan@ximian.com>
1258
1259         * DESCryptoServiceProvider.cs: Removed unnecessary Dispose ().
1260
1261 2002-10-11  Sebastien Pouliot  <spouliot@videotron.ca>
1262
1263         * DES.cs: Create() using CryptoConfig, fix #30256
1264         * DESCryptoServiceProvider.cs: fix #30256
1265         * RandomNumberGenerator.cs: uncomment in Create(rng) for CryptoConfig
1266
1267 2002-10-10  Sebastien Pouliot  <spouliot@videotron.ca>
1268
1269         * AsymmetricAlgorithm.cs: Inherit from IDisposable, common support from XML import
1270         * DSA.cs: FromXmlString() keypair import, Create() using CryptoConfig
1271         * RSA.cs: FromXmlString() keypair import, Create() using CryptoConfig
1272         * DSACryptoServiceProvider.cs: Added Dispose()
1273
1274 2002-10-09  Sebastien Pouliot  <spouliot@videotron.ca>
1275
1276         * CryptoConfig.cs: New implementation
1277
1278 2002-10-05  Andrew Birkett  <andy@nobugs.org>
1279
1280         * RC2CryptoServiceProvider.cs: New implementation
1281         * RC2.cs: New implementation
1282
1283 2002-09-22  Andrew Birkett  <andy@nobugs.org>
1284
1285         * RijndaelManaged.cs: Added faster case for multiplication by 2 in GF(8)
1286         
1287 2002-09-22  Andrew Birkett  <andy@nobugs.org>
1288
1289         * RijndaelManaged.cs: BlockSize now reports size in bytes.
1290         * ICryptoTransform.cs: Updated comments - BlockSizes are in bytes, unlike elsewhere.
1291
1292 2002-09-19  Andrew Birkett  <andy@nobugs.org>
1293
1294         * Rijndael.cs: Create() now gives you a RijndaelManaged object
1295         * RijndaelManaged.cs: Added dummy GenerateKey until we have a proper RNG.
1296         * SymmetricAlgorithm.cs: Updated comments
1297
1298 2002-09-15  Andrew Birkett  <andy@nobugs.org>
1299
1300         * RijndaelManaged.cs: Added support for CBC-mode, PKCS7/Zero padding.
1301         * SymmetricAlgorithm.cs: IV size must match block size, not key size.  
1302           Key property now sets KeySizeValue correctly in bits.
1303
1304 2002-09-11  Andrew Birkett  <andy@nobugs.org>
1305
1306         * RijndaelManaged.cs: Implemented ECB-mode Rijndael cipher.
1307         * Rijndael.cs: Set valid key/block sizes.
1308         * SymmetricAlgorithm.cs: Remove throw from ctr so we can instantiate
1309           derived classes.  Fixes to key sizes so they are measured in bits.
1310         * KeySizes.cs: Updated comments to emphasize that sizes are in bits.
1311
1312 2002-06-29  Martin Baulig  <martin@gnome.org>
1313
1314         * AsymmetricAlgorithm.cs: Removed a duplicate semicolon to make it compile.
1315
1316 2002-05-19  Martin Baulig  <martin@gnome.org>
1317
1318         * FromBase64Transform.cs (TransformFinalBlock): The return value of
1319         `DoTransform' tells us the number of bytes actually written - if it's
1320         smaller than `res', copy it to a smaller array.
1321
1322 2002-02-21  Mark Crichton <crichton@gimp.org>
1323
1324         * RNGCryptoServiceProvider.cs: New file.
1325         * RandomNumberGenerator.cs: Constructor is now marked public.
1326
1327 2002-02-13  Dan Lewis <dihlewis@yahoo.co.uk>
1328
1329         * DSACryptoServiceProvider.cs, SHA384Managed.cs, SHA512Managed.cs,
1330         Rijndael.cs, RSA.cs, RSAParameters.cs : New files (stubs)
1331
1332 Mon Feb 11 13:26:17 CET 2002 Paolo Molaro <lupus@ximian.com>
1333
1334         * X509Certificates: dummy class.
1335
1336 2002-01-10  Duco Fijma <duco@lorentz.xs4all.nl>
1337         * Create (trivial) implementation of RandomNumberGenerator
1338
1339 2002-01-05  Ravi Pratap  <ravi@ximian.com>
1340
1341         * CryptoAPITransform.cs, DESCryptoProvider.cs : MonoTODO attribute
1342         decoration.
1343
1344         * HashAlgorithm.cs, MD5.cs, SHA1.cs, SHA256.cs, SHA384.cs : Ditto.
1345
1346         * SHA512.cs, SymmetricAlgorithm.cs, ToBase64Transform.cs, 
1347         AsymmetricAlgorithm.cs, CryptoStream.cs, DSA.cs, DSASignatureDeformatter.cs,
1348         DSASignatureFormatter.cs, SignatureDescription.cs : Ditto.
1349         
1350 Wed Nov 14 17:04:30 CET 2001 Paolo Molaro <lupus@ximian.com>
1351
1352         * MD5CryptoServiceProvider.cs, SHA1CryptoServiceProvider.cs,
1353         SHA256Managed.cs: CLSCompliant updates.
1354
1355 2001-10-11  Thomas Neidhart <tome@sbox.tugraz.at>
1356
1357         * CryptoAPITransform.cs: Initial version
1358         * CryptoStream.cs: Initial version
1359         * CspParameter.cs: Initial version
1360         * CspProviderFlags.cs: Initial version
1361         * DSA.cs: Initial version
1362         * DSAParameters.cs: Initial version
1363         * DSASignatureDeformatter.cs: Initial version
1364         * DSASignatureFormatter.cs: Initial version
1365         * DeriveBytes.cs: Initial version
1366
1367 2001-10-06  Thomas Neidhart <tome@sbox.tugraz.at>
1368
1369     * AsymmetricAlgorithm.cs: Inital version
1370         * AsymmetricKeyExchangeDeformatter.cs: Initial version
1371         * AsymmetricKeyExchangeFormatter.cs: Initial version
1372         * AsymmetricSignatureDeformatter.cs: Initial version
1373         * AsymmetricSignatureFormatter.cs: Initial version
1374         * PaddingMode.cs: Added PaddingMode.None
1375         * SignatureDescription.cs: Initial version
1376     * CryptographicException.cs: Initial version
1377         * CryptographicUnknownOperationException.cs: Initial version
1378         * SymmetricAlgorithm.cs: Implemented CreateDecryptor, CreateEncryptor
1379           and Create() methods.
1380         
1381 2001-08-20  Sergey Chaban <serge@wildwestsoftware.com>
1382
1383         * DES.cs encryption core is about 30% faster than previous version.
1384         * DESCryptoServiceProvider.cs added PKCS-5 padding.
1385
1386 2001-08-09  Sergey Chaban <serge@wildwestsoftware.com>
1387
1388         * ToBase64Transform.cs: Base64Table now supports both encoding
1389           and decoding tables. As a result Table was renamed to EncodeTable
1390           and DecodeTable was added.
1391         * FromBase64Transform.cs: Initial check-in.
1392         * DES.cs: Initial check-in.
1393         * DESCryptoServiceProvider.cs: Initial check-in.
1394
1395 2001-08-01  Matthew S. Ford  <Matthew.S.Ford@Rose-Hulman.Edu>
1396
1397         * CipherMode.cs: Initial version.
1398         * CryptoStreamMode.cs: Initial version.
1399         * HashAlgorithm.cs: Initial version.
1400         * ICryptoTransform.cs: Initial version.
1401         * KeySizes.cs: Initial version.
1402         * MD5.cs: Initial version.
1403         * MD5CryptoServiceProvider.cs: Initial version.
1404         * PaddingMode.cs: Initial version.
1405         * SHA1.cs: Initial version.
1406         * SHA1CryptoServiceProvider.cs: Initial version.
1407         * SHA256.cs: Initial version.
1408         * SHA256Managed.cs: Initial version.
1409         * SHA384.cs: Initial version.
1410         * SHA512.cs: Initial version.