New test.
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / ChangeLog
1 2005-09-27  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * Pkcs9Attribute.cs: Added new CopyFrom method overrides (2.0 RC).
4         * Pkcs9SigningTime.cs: Don't call base.CopyFrom anymore.
5
6 2005-05-03  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * CmsSigner.cs: Removed old FIXME.
9         * ContentInfo.cs: Better detection (but still less strict than MS).
10         * EnvelopedCms.cs: Avoid possible NullReferenceException in Encrypt.
11         * KeyTransRecipientInfo.cs: Minor editing updates.
12         * Pkcs9ContentType.cs: Added encoding/decoding of the content 
13         information (OID).
14         * Pkcs9MessageDigest.cs: Added encoding/decoding of the digest.
15         * SignedCms.cs: Version set to 0 (default). Serial numbers are 
16         reversed here (Fx isn't very consistant in this regard).
17         * SignerInfo.cs: Convert the hash name to an OID.
18         * SignerInfoCollection.cs: Completed class.
19
20 2005-04-26  Sebastien Pouliot  <sebastien@ximian.com>
21
22         * AlgorithmIdentifier.cs: Removed FIXME - seems "by design".
23         * ContentInfo.cs: Applied fix for ArgumentNullException (was fixed in 
24         beta2).
25         * Pkcs9ContentType.cs: Added new override for CopyFrom.
26         * Pkcs9DocumentDescription.cs: Added new override for CopyFrom. 
27         Applied fix for ArgumentNullException (was fixed in beta2).
28         * Pkcs9DocumentName.cs: Added new override for CopyFrom. 
29         Applied fix for ArgumentNullException (was fixed in beta2).
30         * Pkcs9MessageDigest.cs: Added new override for CopyFrom.
31         * Pkcs9SigningTime.cs: Added new override for CopyFrom.
32
33 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
34
35         * SignedCms.cs: Fix compiler warning (unused variable).
36
37 2005-04-24  Sebastien Pouliot  <sebastien@ximian.com>
38
39         * SubjectIdentifierType.cs: Removed (really) obsolete enum value and
40         [Serializable] attribute.
41
42 2005-04-23  Sebastien Pouliot  <sebastien@ximian.com>
43
44         * CmsRecipient.cs, CmsRecipientCollection.cs, CmsSigner.cs, 
45         EnvelopedCms.cs, KeyAgreeRecipientInfo.cs, Pkcs9Attribute.cs,
46         Pkcs9ContentType.cs, Pkcs9DocumentDescription.cs, Pkcs9DocumentName.cs,
47         Pkcs9MessageDigest.cs, Pkcs9SigningTime.cs, SignedCms.cs, 
48         SignerInfo.cs: Adapted for changes in class names in beta2.
49
50 2005-01-17  Sebastien Pouliot  <sebastien@ximian.com>
51
52         * Pkcs9Attribute.cs: Fixed wrt unit tests.
53         * Pkcs9ContentType.cs: Completed public part. Internals are still
54         todo later.
55         * Pkcs9DocumentDescription.cs: Completed implementation.
56         * Pkcs9DocumentName.cs: Completed implementation.
57         * Pkcs9SigningTime.cs: Completed implementation.
58         * Pkcs9MessageDigest.cs: Completed public part. Internals are still
59         todo later.
60
61 2004-09-04  Tim Coleman <tim@timcoleman.com>
62         * Pkcs9ContentType.cs Pkcs9MessageDigest.cs:
63                 New classes for 2.0
64
65 2004-07-08  Sebastien Pouliot  <sebastien@ximian.com>
66
67         * ContentInfo.cs: Added finalizer.
68         * CmsRecipient.cs: New. Replace Pkcs7Recipient (from 1.2).
69         * CmsRecipientCollection.cs: New. Replace Pkcs7RecipientCollection
70         (from 1.2).
71         * CmsRecipientEnumerator.cs: New. Replace Pkcs7RecipientEnumerator
72         (from 1.2).
73         * CmsSigner.cs: New. Replace Pkcs7Signer (from 1.2).
74         * EnvelopedCms.cs: New. Replace EnvelopedPkcs7 (from 1.2).
75         * KeyAgreeRecipientInfo.cs: Fixed internal constructor.
76         * Pkcs9Attribute.cs: Now inherit from AsnEncodedData. Fixed 
77         constructors.
78         * Pkcs9DocumentDescription.cs: Sealed class and fixed API.
79         * Pkcs9DocumentName.cs: Sealed class and fixed API.
80         * Pkcs9SigningTime.cs: Sealed class and fixed API.
81         * PublicKeyInfo.cs: Sealed class.
82         * RecipientInfo.cs: Removed protected constructor.
83         * RecipientInfoCollection.cs: Sealed class.
84         * RecipientInfoEnumerator.cs: Sealed class.
85         * SignedCms.cs: New. Replace SignedPkcs7 (from 1.2).
86         * SignerInfo.cs: Sealed class and fixed API.
87         * SignerInfoCollection.cs: Sealed class and fixed CopyTo.
88         * SignerInfoEnumerator.cs: Sealed class.
89         * SubjectIdentifier.cs: Sealed class.
90         * SubjectIdentifierOrKey.cs: Sealed class.
91         * SubjectIdentifierType.cs: Fixed enum and added [Serializable].
92
93 2004-07-07  Sebastien Pouliot  <sebastien@ximian.com>
94
95         * AlgorithmIdentifier.cs: Added missing #if NET_2_0.
96         * ContentInfo.cs: Fixed OID due to changes in Mono.Security.
97         * EnvelopedPkcs7.cs: Fixed OID due to changes in Mono.Security.
98         * SignedPkcs7.cs: Fixed OID due to changes in Mono.Security.
99
100 2003-12-07  Sebastien Pouliot  <spouliot@videotron.ca>
101
102         * ContentInfo.cs: Modified default Oid not to include description. 
103         Added basic support for static GetContentType.
104         * EnvelopedPkcs7.cs: New. Partial implementation of PKCS#7 envelopes
105         (encrypted data).
106         * KeyAgreeRecipientInfo.cs: New. Stub for key agreement informations.
107         Note that key agreement algorithms (DH) are absent from the framework.
108         * KeyTransRecipientInfo.cs: New. Implementation for key transport
109         informations. 
110         * Pkcs7Recipient.cs: New. Implementation of "recipients" - how it 
111         links to a X.509 certificate (issuer and serial key or subject key 
112         info).
113         * Pkcs7RecipientCollection.cs: New. Collection of Pkcs7Recipient.
114         * Pkcs7RecipientEnumerator.cs: New. Enumerator for Pkcs7Recipient.
115         * Pkcs7AttributeCollection.cs: New. Collection of Pkcs9Attributes.
116         * Pkcs7AttributeEnumerator.cs: New. Enumerator for Pkcs9Attributes.
117         * PublicKeyInfo.cs: New. Handle public key informations.
118         * RecipientInfoCollection.cs: New. Collection of RecipientInfo (and
119         inherited classes).
120         * RecipientInfoEnumerator.cs: New. Enumerator for RecipientInfo (and
121         inherited classes).
122         * SignedPkcs7.cs: New. Partial implementation of PKCS#7 signed
123         structures.
124         * SignerInfo.cs: New. Information (certificate and attributes) about 
125         the signer. Actual signature/verification stuff is missing.
126         * SignerInfoCollection.cs: New. Collection of SignerInfo.
127         * SignerInfoEnumarator.cs: New. Enumerator for SignerInfo.
128         * SubjectIdentifier.cs: New. Contains the type of identifier linking
129         to a subject.
130         * SubjectIdentifierOrKey.cs: New. Contains the subject's public key or
131         an information linking to a subject public key.
132
133 2003-11-08  Sebastien Pouliot  <spouliot@videotron.ca>
134
135         * ContentInfo.cs: New. Class to encapsulate PKCS7 ContentInfo. Static 
136         method GetContentType need to be completed (requires some test vectors).
137         * Pkcs7Signer.cs: New. Class to add attributes (authenticated and/or 
138         authenticated), certificates and other informations to the signature.
139         * RecipientInfo.cs: New. Abstract class to encpasulate recipient 
140         informations.
141
142 2003-11-07  Sebastien Pouliot  <spouliot@videotron.ca>
143
144         * AlgorithmIdentifier.cs: New. Class to encapsulate PKCS7 AlgorithmIdentifier.
145         * CryptographicAttribute.cs: Basic class for attributes.
146         * KeyAgreeKeyChoice.cs: New. Enumeration for key agreement.
147         * Pkcs9Attribute.cs: New. Base class for Pkcs#9 attributes.
148         * Pkcs9DocumentDescription.cs: New. Pkcs#9 DocumentDescription attribute.
149         * Pkcs9DocumentName.cs: New. Pkcs#9 DocumentName attribute.
150         * Pkcs9SigningTime.cs: New. Pkcs#9 SigningTime attribute.
151         * RecipientInfoType.cs: New. Enumeration for RecipientInfo.
152         * RecipientSubType.cs: New. Enumeration for RecipientInfo.
153         * SubjectIdentifierOrKeyType.cs: New. Enumeration for SubjectIdentifier.
154         * SubjectIdentifierType.cs: New. Enumeration for SubjectIdentifier.