057e0d9f2c56fab0455ab94cec73b1561ee08e8a
[mono.git] / mcs / class / corlib / Mono.Security / ChangeLog
1 2007-03-11  Zoltan Varga  <vargaz@gmail.com>
2
3         * ASN1Convert.cs: Fix a warning.
4
5 2007-02-12  Sebastien Pouliot  <sebastien@ximian.com>
6
7         * ASN1Convert.cs: Add support for decoding ASN.1 dates with an UTC 
8         offset (e.g. 990630000000+1000) as some certificates use this format.
9
10 2007-01-05  Sebastien Pouliot  <sebastien@ximian.com>
11
12         * ASN1Convert.cs: Added comment to FromDateTime to specify that, under
13         1.x, the DateTime must be a local (not UTC) date time. Fixed ToDateTime
14         to return a DateTimeKind.Utc DateTime under 2.0.
15
16 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * StrongName.cs: Fix the (very unlikely) case where an MD5 public key
19         token is requested (part of the spec, never seen in the wild).
20
21 2006-06-14  Sebastien Pouliot  <sebastien@ximian.com>
22
23         * ASN1.cs: Switch condition not to use the cached data if there is a
24         collection being used. Skip extra 0 at the end of the byte[] buffer.
25
26 2006-01-04  Sebastien Pouliot  <sebastien@ximian.com>
27
28         * ASN1Convert.cs: Fix convertion of integer 0 to ASN.1.
29
30 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
31
32         * StrongName.cs: Synch with Mono.Security.dll to get support for 
33         strongname keypairs different from 1024 bits.
34
35 2005-10-06  Sebastien Pouliot  <sebastien@ximian.com>
36
37         * ASN1Convert.cs: Better handle big integer than cannot be interpreted
38         as a negative number (don't extend). Fix bug #75778.
39
40 2004-12-15  Sebastien Pouliot  <sebastien@ximian.com>
41
42         * ASN1.cs: Fixed warning for unused variable.
43
44 2004-10-29  Sebastien Pouliot  <sebastien@ximian.com>
45
46         * ASN1.cs: Throw an NotSupportedException when "undefined length 
47         encoding" is used (#68903 but it's not a fix ;-). Fixed GetBytes to
48         encode structures bigger than 64k (fix #68907). Simplified ToString
49         and added Length to help debugging.
50         * PKCS7.cs: Added a flag to avoid resigning a structure (which was
51         duplicating some attributes).
52
53 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
54
55         * ASN1.cs: Fixed warning (l4) for unused variable.
56         * PKCS7.cs: Fixed warning (l4) for unused variable.
57         * Uri.cs: Fixed warning (l4) for unused variables. Remove sealed from
58         class to reduce number of warnings.
59
60 2004-08-30  Sebastien Pouliot  <sebastien@ximian.com>
61
62         * Uri.cs: Copied from System.dll assembly and started adaptation for
63         it's reuse inside the security classes (CAS).
64
65 2004-06-08  Sebastien Pouliot  <sebastien@ximian.com>
66
67         * StrongName.cs: Added corlib specific code to load configuration
68         from machine.config to allow public key token remapping to work
69         with (for example) gacutil.
70         * StrongNameManager.cs: Now load configuration from machine.config.
71
72 2004-05-19  Sebastien Pouliot  <sebastien@ximian.com>
73
74         * PKCS7.cs: In sync with Mono.Security.dll version.
75
76 2004-05-18  Sebastien Pouliot  <sebastien@ximian.com>
77
78         * ASN1Convert.cs: In sync with Mono.Security.dll version.
79         * StrongName.cs: In sync with Mono.Security.dll version.
80
81 2004-05-03  Sebastien Pouliot  <sebastien@ximian.com>
82
83         * ASN1.cs: Fixed NullReferenceException in xmldsig standalone tests.
84
85 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
86
87         * ASN1.cs: In sync with Mono.Security.dll version.
88         * ASN1Convert.cs: In sync with Mono.Security.dll version.
89         * PKCS7.cs: In sync with Mono.Security.dll version.
90         * StrongName.cs: In sync with Mono.Security.dll version.
91
92 2004-04-20  Sebastien Pouliot  <sebastien@ximian.com>
93
94         * ASN1.cs: Added SaveToFile for easier debugging. Patch from
95         Jesper Pedersen.
96         * StrongName.cs: Removed compilation warning (unused variable).
97
98 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
99
100         * BitConverterLE.cs: added which always does
101         little endian conversion
102         * StrongName.cs: Use BitConverterLE
103         * ASN1Convert.cs: Use BitConverterLE
104
105 2004-04-06  Sebastien Pouliot  <sebastien@ximian.com>
106
107         * StrongName.cs: Added support for ECMA "key" to StringName(byte[])
108         constructor.
109
110 2004-03-31  Sebastien Pouliot  <sebastien@ximian.com>
111
112         * StrongName.cs: Update to include new static method that can be 
113         called from the runtime to validate strongname signatures. 
114         Refactored the existing class to reduce code duplication.
115         * StrongNameManager.cs: New. This class keeps the configuration
116         required to map a public key token to an alternative public key
117         (e.g. ECMA public key token -> Mono public key) and to skip
118         strongname validation for specific assemblies/token/users.
119
120 2004-03-24  Sebastien Pouliot  <sebastien@ximian.com>
121
122         * StrongName.cs: Added CanSign property for AssemblyBuilder. Current
123         Fx design requires an exception to know if the private key is present
124         in an RSA instance. In some case (inside corlib) we can do without...
125
126 2004-03-23  Sebastien Pouliot  <sebastien@ximian.com>
127
128         * StrongName.cs: Added exceptions for null or invalid keys.
129
130 2004-03-17  Sebastien Pouliot  <sebastien@ximian.com>
131
132         * ASN1.cs: Class synched with Mono.Security.
133         * ASN1Convert.cs: Class synched with Mono.Security.
134
135 2003-10-18  Sebastien Pouliot  <spouliot@videotron.ca>
136
137         * StrongName.cs: Added from Mono.Security assembly for StrongName
138         support in AssemblyBuilder.
139
140 2003-10-12  Sebastien Pouliot  <spouliot@videotron.ca>
141
142         * PKCS7.cs: Added from Mono.Security assembly for Authenticode
143         support in X509Certificate.CreateFromSignedFile
144
145 2003-03-15  Sebastien Pouliot  <spouliot@videotron.ca>
146
147         * ASN1.cs: Improved version.
148         * ASN1Convert.cs: New. Helper class to convert between .NET 
149         types and ASN.1 structures.
150
151 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
152
153         * ASN1.cs: Renamed namespace to match new location.
154