ChangeLog 5.5 KB

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