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