2004-09-07 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / ChangeLog
1 2004-09-07  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * X509Certificate.cs: Merge changes from HEAD.
4
5 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
6
7         * X509Certificate.cs: Removed old (commented) Authenticode stuff.
8         Added new stuff for 1.2 (stub).
9
10 2003-10-12  Sebastien Pouliot  <spouliot@videotron.ca>
11
12         * X509Certificate.cs: Implements CreateFromSignedFile using
13         Authenticode related classes.
14
15 2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>
16
17         * X509Certificate.cs: Implements X509Certificate(IntPtr)
18         constructor for compatibility with CryptoAPI.
19
20 2003-04-23  Sebastien Pouliot  <spouliot@videotron.ca>
21
22         * X509Certificate.cs: Fixed issues for null certificate 
23         (special case where object exists without any certificate)
24         which made PublisherTest fails.
25
26 2003-03-15  Sebastien Pouliot  <spouliot@videotron.ca>
27
28         * X509Certificate.cs: Now use Mono.Security.X509.X509Certificate.
29
30 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
31
32         * X509Certificate.cs: Changes to refer Mono.Security (for ASN1)
33
34 2002-12-27  Sebastien Pouliot  <spouliot@videotron.ca>
35
36         * ASN1.cs: New. Updated ASN1 classes for X509Certificate that can
37         now be reused for other tools (like Cert2Spc). Classes are marked
38         internal so they cannot be reused from outside corlib (for 
39         compatibility with MS implementation).
40         * X509Certificate.cs: Removed all ASN1 classes from file.       
41
42 2002-12-26  Sebastien Pouliot  <spouliot@videotron.ca>
43
44         * X509Certificate.cs: Fixed the date issue (again). Time was 
45         converted to local time then ajusted to Pacific time. Now time
46         is kept (internally) as UTC and correct (-8) to Pacific when shown.
47         Changed Authenticode signature detection and removed debugging code.
48
49 2002-12-22  Sebastien Pouliot  <spouliot@videotron.ca>
50
51         * X509Certificate.cs: Completed CreateFromSignedFile. Added a new 
52         internal constructor so Publisher (and the related classes) can 
53         create a X509Certificate object which return null dates (for both 
54         GetEffectiveDateString and GetExpirationDateString methods).
55
56 2002-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
57
58         * X509Certificate.cs: Fixed the date issue. MS implementation always
59         return the local time for Pacific (GMT-8). Added ToString() and changed
60         some protected to private to please corcompare.
61
62 2002-11-03  Sebastien Pouliot  <spouliot@videotron.ca>
63
64         * X509Certificate.cs: Updated some DN cases and some minor time issues.
65         GetEffectiveDateString and GetExpirationDateString still don't match 
66         MS implementation (however they seems, most of the time, to be on par 
67         with the Windows Certificate Viewer - crtmgr.exe).
68
69 2002-11-02  Sebastien Pouliot  <spouliot@videotron.ca>
70
71         * ChangeLog: New. First entry ;-)
72         * X509Certificates.cs: New. Almost complete - except 
73         CryptoAPI link, CreateFromSignedFile and some date issues.