New test.
[mono.git] / mcs / class / Mono.Security / Mono.Security / ChangeLog
index 2f02a5a836b06082579d33f21e6b7b57b1b703f1..f764684685d871966a2e4c534c583949d7cba69c 100644 (file)
@@ -1,3 +1,54 @@
+2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * StrongName.cs: Fix the (very unlikely) case where an MD5 public key
+       token is requested (part of the spec, never seen in the wild).
+
+2006-06-14  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ASN1.cs: Switch condition not to use the cached data if there is a
+       collection being used. Skip extra 0 at the end of the byte[] buffer.
+
+2006-01-04  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ASN1Convert.cs: Fix convertion of integer 0 to ASN.1.
+
+2005-11-04  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * StrongName.cs: Added new constructor to specify the strongname key 
+       size (which can vary from 384 bits to 16384 bits in 2.0). Fixed 
+       PublicKey property not to assume a 1024 bits public key. Verification
+       was *already* working for any key length (so *much* older version of 
+       Mono can verify new assemblies signatures without problem :-).
+
+2005-10-06  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ASN1Convert.cs: Better handle big integer than cannot be interpreted
+       as a negative number (don't extend). Fix bug #75778.
+
+2005-10-03  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * PKCS7.cs: Ensure that attributes (authenticated and unauthenticated)
+       are sorted as required in ASN.1 SET with DER encoding. Kind of hackish
+       because this should be done in the ASN.1 encoder - but it solves
+       interop problems with BouncyCastle. Patch (modified) from Daniel 
+       Granath <dgranath#gmail.com>.
+
+2004-10-29  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ASN1.cs: Throw an NotSupportedException when "undefined length 
+       encoding" is used (#68903 but it's not a fix ;-). Fixed GetBytes to
+       encode structures bigger than 64k (fix #68907). Simplified ToString
+       and added Length to help debugging.
+       * PKCS7.cs: Added a flag to avoid resigning a structure (which was
+       duplicating some attributes).
+
+2004-09-17  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ASN1.cs: In synch with corlib version. Fixed all level 4 compilation
+       warnings.
+       * PKCS7.cs: In synch with corlib version. Fixed all level 4 
+       compilation warnings.
+
 2004-06-08  Sebastien Pouliot  <sebastien@ximian.com>
 
        * StrongName.cs: Synch with corlib (the new code isn't even compiled)