added NET_2_0 strongly typed overrides
[mono.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / ChangeLog
1 2006-08-08  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * X509Certificate.cs: A unrequired password can be supplied to the 
4         2.0 ctors.
5
6 2006-07-31  Atsushi Enomoto  <atsushi@ximian.com>
7
8         * X509Certificate.cs :
9           In 2.0 IntPtr constructor reject IntPtr.Zero as invalid handle.
10           In 2.0 copy constructor rejects null argument.
11           Equals() should return false if the argument cert is null.
12           Also if both x509 and raw data are null it caused NRE.
13
14 2005-11-09  Sebastien Pouliot  <sebastien@ximian.com>
15
16         * X509ContentType.cs: Removed extra [Serializable] (2.0).
17
18 2005-09-25  Sebastien Pouliot  <sebastien@ximian.com>
19
20         * X509Certificate.cs: Fix date/time reporting for NET_2_0 profile (bug
21         fixed in 2.0).
22
23 2005-04-27  Sebastien Pouliot  <sebastien@ximian.com>
24
25         * X509Certificate.cs: Updated features for 2.0.
26
27 2005-04-24  Sebastien Pouliot  <sebastien@ximian.com>
28
29         * X509Certificate.cs: Add [ComVisible (true)] to class, add new Issuer
30         and Subject properties. Removed some [ComVisible (false)] on methods.
31         * X509ContentType.cs: Add [ComVisible (true)] to enum.
32         * X509KeyStorageFlags.cs: Add [ComVisible (true)] to enum.
33
34 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
35
36         * X509Certificate.cs: Added Demand for UnmanagedCode to ctor(IntPtr).
37         Return "empty" certificate when IntPtr.Zero is used with ctor(IntPtr).
38         Don't wrap SecurityException inside COMException for Authenticode.
39
40 2004-11-30  Sebastien Pouliot  <sebastien@ximian.com>
41
42         * X509Certificate.cs: Added ComVisible attributes to match 2.0 October
43         Preview. Prepared Import and Export to be plugged with PKCS#12 code.
44         * X509ContentType.cs: Fixed typo (dnd) in comments.
45
46 2004-09-07  Sebastien Pouliot  <sebastien@ximian.com>
47
48         * X509Certificate.cs: CreateFromSignedFile now throw the COMException
49         if the specified file isn't signed (before this was done by 
50         AuthenticodeDeformatter). More details are available on failure.
51
52 2004-07-08  Sebastien Pouliot  <sebastien@ximian.com>
53
54         * X509Certificate.cs: Added new Equals(Object). Moved [Serializable]
55         so it's compiled by all profiles. Added missing MonoTODO.
56         * X509ContentType.cs: Added new (from 1.2) Pkcs12 enum member. Added
57         missing [Serializable] attribute.
58         * X509KeyStorageFlags.cs: Specified all flags values. Added missing
59         [Serializable] attribute.
60
61 2004-07-07  Sebastien Pouliot  <sebastien@ximian.com>
62
63         * X509Certificate.cs: Fixed NET_2_0 directives.
64         * X509ContentType.cs: New enum in Fx 2.0.
65         * X509KeyStorageFlags.cs: New flags in Fx 2.0.
66
67 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
68
69         * X509Certificate.cs: Removed old (commented) Authenticode stuff.
70         Added new stuff for 1.2 (stub).
71
72 2003-10-12  Sebastien Pouliot  <spouliot@videotron.ca>
73
74         * X509Certificate.cs: Implements CreateFromSignedFile using
75         Authenticode related classes.
76
77 2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>
78
79         * X509Certificate.cs: Implements X509Certificate(IntPtr)
80         constructor for compatibility with CryptoAPI.
81
82 2003-04-23  Sebastien Pouliot  <spouliot@videotron.ca>
83
84         * X509Certificate.cs: Fixed issues for null certificate 
85         (special case where object exists without any certificate)
86         which made PublisherTest fails.
87
88 2003-03-15  Sebastien Pouliot  <spouliot@videotron.ca>
89
90         * X509Certificate.cs: Now use Mono.Security.X509.X509Certificate.
91
92 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
93
94         * X509Certificate.cs: Changes to refer Mono.Security (for ASN1)
95
96 2002-12-27  Sebastien Pouliot  <spouliot@videotron.ca>
97
98         * ASN1.cs: New. Updated ASN1 classes for X509Certificate that can
99         now be reused for other tools (like Cert2Spc). Classes are marked
100         internal so they cannot be reused from outside corlib (for 
101         compatibility with MS implementation).
102         * X509Certificate.cs: Removed all ASN1 classes from file.       
103
104 2002-12-26  Sebastien Pouliot  <spouliot@videotron.ca>
105
106         * X509Certificate.cs: Fixed the date issue (again). Time was 
107         converted to local time then ajusted to Pacific time. Now time
108         is kept (internally) as UTC and correct (-8) to Pacific when shown.
109         Changed Authenticode signature detection and removed debugging code.
110
111 2002-12-22  Sebastien Pouliot  <spouliot@videotron.ca>
112
113         * X509Certificate.cs: Completed CreateFromSignedFile. Added a new 
114         internal constructor so Publisher (and the related classes) can 
115         create a X509Certificate object which return null dates (for both 
116         GetEffectiveDateString and GetExpirationDateString methods).
117
118 2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
119
120         * X509Certificate.cs: Fixed the date issue. MS implementation always
121         return the local time for Pacific (GMT-8). Added ToString() and changed
122         some protected to private to please corcompare.
123
124 2002-11-03  Sebastien Pouliot  <spouliot@videotron.ca>
125
126         * X509Certificate.cs: Updated some DN cases and some minor time issues.
127         GetEffectiveDateString and GetExpirationDateString still don't match 
128         MS implementation (however they seems, most of the time, to be on par 
129         with the Windows Certificate Viewer - crtmgr.exe).
130
131 2002-11-02  Sebastien Pouliot  <spouliot@videotron.ca>
132
133         * ChangeLog: New. First entry ;-)
134         * X509Certificates.cs: New. Almost complete - except 
135         CryptoAPI link, CreateFromSignedFile and some date issues.