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