ChangeLog 7.0 KB

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