X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Cryptography%2FChangeLog;h=56a56ad8dcc573af40d355229b631220c3730fc1;hb=c694fb8e631e8f79b383b8ff696228abe1689a20;hp=85e4e960b09732050973e6a3c2517718407ef960;hpb=b39d5edf62fb3908e10647e1a7e60dadeb88b2be;p=mono.git diff --git a/mcs/class/corlib/System.Security.Cryptography/ChangeLog b/mcs/class/corlib/System.Security.Cryptography/ChangeLog index 85e4e960b09..56a56ad8dcc 100644 --- a/mcs/class/corlib/System.Security.Cryptography/ChangeLog +++ b/mcs/class/corlib/System.Security.Cryptography/ChangeLog @@ -1,3 +1,68 @@ +2006-11-24 Sebastien Pouliot + + * CryptoConfig.cs: Add support for (2.0) custom X.509 chains. + +2006-11-08 Sebastien Pouliot + + * CryptoConfig.cs: Add support for (2.0) X.509 extensions in + CreateFromName method. This allows the framework to be extensible with + new certificate extensions (syntax is missing from machine.config). + +2006-10-12 Sebastien Pouliot + + * CryptoConfig.cs: Use SmallXmlParser with a custom handler to reduce + memory requirements to process machine.config. Fix #79653 (beagle). + +2006-10-11 Sebastien Pouliot + + * CryptoConfig.cs: Accept lower/mixed-case algorithm names in + CreateFromName and MapNameToOID methods (fix bug #79641). Removed OID + mappings in 2.0 for DSA and 3DES (they were part of the betas but not + in the final 2.0 release of the framework). + +2006-09-20 Kazuki Oikawa + + * RijndaelManaged.cs: improves the performance. + +2006-09-08 Sebastien Pouliot + + * RSAOAEPKeyExchangeDeformatter.cs: Throw a CryptographicException, + instead of returning null, when a padding error occurs on decryption. + * RSAPKCS1KeyExchangeDeformatter.cs: Throw a CryptographicException, + instead of returning null, when a padding error occurs on decryption. + +2006-07-01 Sebastien Pouliot + + * AsymmetricSignatureDeformatter.cs: Set the hash algorithm name from + the hash instance. Fix for bug #78744 by Diego Mesa Tabares. + +2006-06-15 Sebastien Pouliot + + * HashAlgorithm.cs: Changed the order of BlockCopy + HashCore to + HashCore + BlockCopy. Fx 2.0 now allows using a null output buffer + (without exception) while previous 1.x versions crashed the runtime + (mono won't crash the runtime, so we always do like 2.0). + +2006-05-30 Sebastien Pouliot + + * AsymmetricKeyExchangeDeformatter.cs: Under 2.0 the ctor is + protected. + * AsymmetricKeyExchangeFormatter.cs: Under 2.0 the ctor is protected. + * AsymmetricSignatureDeformatter.cs: Under 2.0 the ctor is protected. + * AsymmetricSignatureFormatter.cs: Under 2.0 the ctor is protected. + * DES.cs: Under 2.0 the ctor is protected. + * HashAlgorithm.cs: Under 2.0 the HashValue field is protected + internal. + * RandomNumberGenerator.cs: Under 2.0 the ctor is protected. + * RC2.cs: Under 2.0 the ctor is protected. + * Rijndael.cs: Under 2.0 the ctor is protected. + * RSA.cs: Under 2.0 the ctor is protected. + * SHA256.cs: Under 2.0 the ctor is protected. + * SHA384.cs: Under 2.0 the ctor is protected. + * SHA512.cs: Under 2.0 the ctor is protected. + * SymmetricAlgorithm.cs: Under 2.0 the ctor is protected. + * TripleDES.cs: Under 2.0 the ctor is protected. + 2006-02-03 Zoltan Varga * CryptoStream.cs: Add 'override' keyword to Dispose (bool) method in 2.0.