ChangeLog 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. 2004-07-08 Sebastien Pouliot <[email protected]>
  2. * ContentInfo.cs: Added finalizer.
  3. * CmsRecipient.cs: New. Replace Pkcs7Recipient (from 1.2).
  4. * CmsRecipientCollection.cs: New. Replace Pkcs7RecipientCollection
  5. (from 1.2).
  6. * CmsRecipientEnumerator.cs: New. Replace Pkcs7RecipientEnumerator
  7. (from 1.2).
  8. * CmsSigner.cs: New. Replace Pkcs7Signer (from 1.2).
  9. * EnvelopedCms.cs: New. Replace EnvelopedPkcs7 (from 1.2).
  10. * KeyAgreeRecipientInfo.cs: Fixed internal constructor.
  11. * Pkcs9Attribute.cs: Now inherit from AsnEncodedData. Fixed
  12. constructors.
  13. * Pkcs9DocumentDescription.cs: Sealed class and fixed API.
  14. * Pkcs9DocumentName.cs: Sealed class and fixed API.
  15. * Pkcs9SigningTime.cs: Sealed class and fixed API.
  16. * PublicKeyInfo.cs: Sealed class.
  17. * RecipientInfo.cs: Removed protected constructor.
  18. * RecipientInfoCollection.cs: Sealed class.
  19. * RecipientInfoEnumerator.cs: Sealed class.
  20. * SignedCms.cs: New. Replace SignedPkcs7 (from 1.2).
  21. * SignerInfo.cs: Sealed class and fixed API.
  22. * SignerInfoCollection.cs: Sealed class and fixed CopyTo.
  23. * SignerInfoEnumerator.cs: Sealed class.
  24. * SubjectIdentifier.cs: Sealed class.
  25. * SubjectIdentifierOrKey.cs: Sealed class.
  26. * SubjectIdentifierType.cs: Fixed enum and added [Serializable].
  27. 2004-07-07 Sebastien Pouliot <[email protected]>
  28. * AlgorithmIdentifier.cs: Added missing #if NET_2_0.
  29. * ContentInfo.cs: Fixed OID due to changes in Mono.Security.
  30. * EnvelopedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  31. * SignedPkcs7.cs: Fixed OID due to changes in Mono.Security.
  32. 2003-12-07 Sebastien Pouliot <[email protected]>
  33. * ContentInfo.cs: Modified default Oid not to include description.
  34. Added basic support for static GetContentType.
  35. * EnvelopedPkcs7.cs: New. Partial implementation of PKCS#7 envelopes
  36. (encrypted data).
  37. * KeyAgreeRecipientInfo.cs: New. Stub for key agreement informations.
  38. Note that key agreement algorithms (DH) are absent from the framework.
  39. * KeyTransRecipientInfo.cs: New. Implementation for key transport
  40. informations.
  41. * Pkcs7Recipient.cs: New. Implementation of "recipients" - how it
  42. links to a X.509 certificate (issuer and serial key or subject key
  43. info).
  44. * Pkcs7RecipientCollection.cs: New. Collection of Pkcs7Recipient.
  45. * Pkcs7RecipientEnumerator.cs: New. Enumerator for Pkcs7Recipient.
  46. * Pkcs7AttributeCollection.cs: New. Collection of Pkcs9Attributes.
  47. * Pkcs7AttributeEnumerator.cs: New. Enumerator for Pkcs9Attributes.
  48. * PublicKeyInfo.cs: New. Handle public key informations.
  49. * RecipientInfoCollection.cs: New. Collection of RecipientInfo (and
  50. inherited classes).
  51. * RecipientInfoEnumerator.cs: New. Enumerator for RecipientInfo (and
  52. inherited classes).
  53. * SignedPkcs7.cs: New. Partial implementation of PKCS#7 signed
  54. structures.
  55. * SignerInfo.cs: New. Information (certificate and attributes) about
  56. the signer. Actual signature/verification stuff is missing.
  57. * SignerInfoCollection.cs: New. Collection of SignerInfo.
  58. * SignerInfoEnumarator.cs: New. Enumerator for SignerInfo.
  59. * SubjectIdentifier.cs: New. Contains the type of identifier linking
  60. to a subject.
  61. * SubjectIdentifierOrKey.cs: New. Contains the subject's public key or
  62. an information linking to a subject public key.
  63. 2003-11-08 Sebastien Pouliot <[email protected]>
  64. * ContentInfo.cs: New. Class to encapsulate PKCS7 ContentInfo. Static
  65. method GetContentType need to be completed (requires some test vectors).
  66. * Pkcs7Signer.cs: New. Class to add attributes (authenticated and/or
  67. authenticated), certificates and other informations to the signature.
  68. * RecipientInfo.cs: New. Abstract class to encpasulate recipient
  69. informations.
  70. 2003-11-07 Sebastien Pouliot <[email protected]>
  71. * AlgorithmIdentifier.cs: New. Class to encapsulate PKCS7 AlgorithmIdentifier.
  72. * CryptographicAttribute.cs: Basic class for attributes.
  73. * KeyAgreeKeyChoice.cs: New. Enumeration for key agreement.
  74. * Pkcs9Attribute.cs: New. Base class for Pkcs#9 attributes.
  75. * Pkcs9DocumentDescription.cs: New. Pkcs#9 DocumentDescription attribute.
  76. * Pkcs9DocumentName.cs: New. Pkcs#9 DocumentName attribute.
  77. * Pkcs9SigningTime.cs: New. Pkcs#9 SigningTime attribute.
  78. * RecipientInfoType.cs: New. Enumeration for RecipientInfo.
  79. * RecipientSubType.cs: New. Enumeration for RecipientInfo.
  80. * SubjectIdentifierOrKeyType.cs: New. Enumeration for SubjectIdentifier.
  81. * SubjectIdentifierType.cs: New. Enumeration for SubjectIdentifier.