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